diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-02-24 20:55:57 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-02-25 00:04:11 -0300 |
commit | 905aae63c4084ed3a023479ef1e2c342f82fd15a (patch) | |
tree | dd08df74ccdc3fb1496a21812ae8cb82616b8ac6 /community | |
parent | da2ecfc37d7f9ddb3550d0c293b751f9fc3cce25 (diff) | |
download | aports-905aae63c4084ed3a023479ef1e2c342f82fd15a.tar.bz2 aports-905aae63c4084ed3a023479ef1e2c342f82fd15a.tar.xz |
community/xbitmaps: move from main
Diffstat (limited to 'community')
-rw-r--r-- | community/xbitmaps/APKBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/community/xbitmaps/APKBUILD b/community/xbitmaps/APKBUILD new file mode 100644 index 0000000000..02c1b40b48 --- /dev/null +++ b/community/xbitmaps/APKBUILD @@ -0,0 +1,30 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=xbitmaps +pkgver=1.1.2 +pkgrel=1 +pkgdesc="X.org header files with bitmaps" +url="http://xorg.freedesktop.org" +arch="noarch" +license="MIT" +options="!check" # No test suite. +depends="util-macros" +source="https://www.x.org/releases/individual/data/$pkgname-$pkgver.tar.bz2" + +build() { + cd "$builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install + + mkdir -p "$pkgdir"/usr/lib + mv "$pkgdir"/usr/share/pkgconfig "$pkgdir"/usr/lib +} + +sha512sums="eed5e2fce9fc6c532984e6ed1262e440591e311ca6c61a7fe7a5c877df84bfc2d7aff388fb9c894fc098785b8e5352f0bd7c918252247a040cf123874847450d xbitmaps-1.1.2.tar.bz2" |