diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-15 12:02:26 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-15 12:02:26 +0000 |
commit | 01e50ec66ee268cc9f8f96ea2e66449e95bdb207 (patch) | |
tree | cb77bbc0968a5853cee95d0552e2e4df62f3a52d /main | |
parent | 56ffd962afc417a79bb9c4214e73ccba64cbffca (diff) | |
download | aports-01e50ec66ee268cc9f8f96ea2e66449e95bdb207.tar.bz2 aports-01e50ec66ee268cc9f8f96ea2e66449e95bdb207.tar.xz |
main/libxres: move .so to -dev package
ref #384
Diffstat (limited to 'main')
-rw-r--r-- | main/libxres/APKBUILD | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/main/libxres/APKBUILD b/main/libxres/APKBUILD index cc654c8b42..52ce54831f 100644 --- a/main/libxres/APKBUILD +++ b/main/libxres/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=libxres pkgver=1.0.4 -pkgrel=1 +pkgrel=2 pkgdesc="X11 Resource extension library" url="http://xorg.freedesktop.org" license="custom" @@ -17,6 +17,10 @@ build () ./configure --prefix=/usr \ --sysconfdir=/etc make || return 1 +} + +package() { + cd "$srcdir"/libXres-$pkgver make DESTDIR="$pkgdir" install || return 1 install -D -m644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE } |