diff options
author | Taner Tas <taner76@gmail.com> | 2018-12-23 21:25:58 +0300 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-03-10 09:35:20 +0000 |
commit | ff3a29cb7c934b7555678889a8e19633d93afc8b (patch) | |
tree | d343a4b52565dc7a9362aa7d6a25bc00cac1aea7 /testing/xfd | |
parent | d241bac791f54770f115199e7bb17d51df891bbf (diff) | |
download | aports-ff3a29cb7c934b7555678889a8e19633d93afc8b.tar.bz2 aports-ff3a29cb7c934b7555678889a8e19633d93afc8b.tar.xz |
testing/xfd: new aport
https://xorg.freedesktop.org/
Xorg font display application.
Diffstat (limited to 'testing/xfd')
-rw-r--r-- | testing/xfd/APKBUILD | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/testing/xfd/APKBUILD b/testing/xfd/APKBUILD new file mode 100644 index 0000000000..8361eb7ba6 --- /dev/null +++ b/testing/xfd/APKBUILD @@ -0,0 +1,37 @@ +# Contributor: Taner Tas <taner76@gmail.com> +# Maintainer: Taner Tas <taner76@gmail.com> +pkgname=xfd +pkgver=1.1.2 +pkgrel=0 +pkgdesc="Xorg font display application." +url="https://xorg.freedesktop.org/" +arch="all" +license="X11" +makedepends=" + fontconfig-dev + gettext-dev + libintl + libxaw-dev + libxft-dev + libxmu-dev + libxrender-dev + " +subpackages="$pkgname-doc" +source=" + https://xorg.freedesktop.org/archive/individual/app/$pkgname-$pkgver.tar.gz + " +options="!check" # No test suite + +build() { + cd "$builddir" + export LIBS="$LIBS -lintl" + ./configure --prefix=/usr + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="ffd3fd9b03584a2f054584def94ad997ef1622803da845b37f8fe90d69b6bfc8b67599c850bd3b38648f10b202180a7ef1fb1d99270caee77e29aeff25dcdca6 xfd-1.1.2.tar.gz" |