diff options
author | Breno Leitao <breno.leitao@gmail.com> | 2017-03-29 14:07:59 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2017-03-30 00:12:20 +0000 |
commit | b90100a751c063b5beaae55796619d8485fa7b42 (patch) | |
tree | 9011b7b73ea4d0df798532f1339988439fdaf3dd /main/xf86-video-rendition | |
parent | 6559182bfc52b1784b0735d528187d2c21cb7f62 (diff) | |
download | aports-b90100a751c063b5beaae55796619d8485fa7b42.tar.bz2 aports-b90100a751c063b5beaae55796619d8485fa7b42.tar.xz |
main/xf86-video-rendition: Stripping manually
Stripping manually to avoid strip non-CARCH binaries, as reported:
>>> xf86-video-rendition*: Stripping binaries
strip: Unable to recognise the format of the input file `./usr/lib/xorg/modules/v20002d.uc'
Diffstat (limited to 'main/xf86-video-rendition')
-rw-r--r-- | main/xf86-video-rendition/APKBUILD | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/main/xf86-video-rendition/APKBUILD b/main/xf86-video-rendition/APKBUILD index 7796e673df..d50d1bed1e 100644 --- a/main/xf86-video-rendition/APKBUILD +++ b/main/xf86-video-rendition/APKBUILD @@ -8,6 +8,7 @@ arch="all" license="custom" subpackages="$pkgname-doc" depends= +options="!strip" makedepends="xorg-server-dev libxi-dev fontsproto randrproto videoproto renderproto" @@ -29,6 +30,9 @@ build() { package() { cd "$srcdir"/$pkgname-$pkgver make DESTDIR="$pkgdir" install || return 1 + + # Stripping manually + strip $pkgdir/usr/lib/xorg/modules/drivers/rendition_drv.so install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING } md5sums="405dd1acba9c2e43d7aa67b631762495 xf86-video-rendition-4.2.6.tar.bz2" |