diff options
author | ScrumpyJack <scrumpyjack@st.ilet.to> | 2016-06-27 10:17:05 +0000 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-07-04 11:42:28 +0200 |
commit | 2ff62bbb9f7b2c82a826d7b159c1bc482aa8f0bd (patch) | |
tree | 97c60fb3221dfe78cd7ccfda5db6125c81d5f676 /community/fvwm | |
parent | 00e8ff605f1c4f6386596f35f2a5287ff9b8bc55 (diff) | |
download | aports-2ff62bbb9f7b2c82a826d7b159c1bc482aa8f0bd.tar.bz2 aports-2ff62bbb9f7b2c82a826d7b159c1bc482aa8f0bd.tar.xz |
testing/[various]: move packages to community
Moves the packages listed below from the testing to the community
repository after successfully testing of said packages.
asciinema
at
calcurse
cmus
compton
cpio
dvd+rw-tools
fortune
fvwm
geary
h2o
heirloom-mailx
leafpad
nedit
nmh
rover
tor
torsocks
urlview
vdesk
w3m
wbar
xcalc
xclock
xeyes
xkill
Diffstat (limited to 'community/fvwm')
-rw-r--r-- | community/fvwm/APKBUILD | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/community/fvwm/APKBUILD b/community/fvwm/APKBUILD new file mode 100644 index 0000000000..e0a5aeb460 --- /dev/null +++ b/community/fvwm/APKBUILD @@ -0,0 +1,49 @@ +# Contributor: ScrumpyJack <scrumpyjack@st.ilet.to> +# Maintainer: Francesco Colista <fcolista@alpinelinux.org> +pkgname=fvwm +pkgver=2.6.6 +pkgrel=0 +pkgdesc="FVWM is a powerful desktop window manager for the X Window system" +url="http://fvwm.org" +arch="all" +license="GPL2" +depends= +depends_dev="libxcursor-dev libx11-dev freetype-dev fontconfig-dev + gettext-dev libxft-dev libxt-dev libxext-dev libpng-dev libxpm-dev" +makedepends="$depends_dev perl libxslt" +install="" +subpackages="$pkgname-doc $pkgname-lang" +source="https://github.com/fvwmorg/fvwm/releases/download/version-2_6_6/$pkgname-$pkgver.tar.gz" + +_builddir=$srcdir/${pkgname}-${pkgver} +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --disable-perllib \ + --disable-bidi \ + --disable-rsvg \ + --disable-xinerama \ + --disable-gtk \ + --with-gnome=no \ + || return 1 + make +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="76e8731bf02ba0b73cfbbf7628f2230f fvwm-2.6.6.tar.gz" +sha256sums="c5de085ff25b2128a401a80225481e63335f815f84eea139f80a5f66e606dc2c fvwm-2.6.6.tar.gz" +sha512sums="9a3b188fa052f1fc2ca593be323916d8d728f1f1633b02058f4cce96cebb3c98de2a179b73e1dd6fb65a4275329f54cd720fcc3ac05ef0ec7299b7bc7cbfc116 fvwm-2.6.6.tar.gz" |