diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2013-06-01 10:28:14 +0200 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2013-06-01 10:28:14 +0200 |
commit | 6142d9bb383134a876709765fed704815922db18 (patch) | |
tree | 9bbbb78a5ce1f8473dbae502634253f80a994331 /community/lib32-libtxc_dxtn | |
parent | 0dc1411695376442c13f473499a876f085074d75 (diff) | |
parent | f8a7f10fa1675bee536e1fdb4672c3d84e779d1c (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/aircrack-ng/PKGBUILD
community/fortune-mod/PKGBUILD
community/hping/PKGBUILD
community/iftop/PKGBUILD
community/uml_utilities/PKGBUILD
community/unhide/PKGBUILD
extra/kismet/PKGBUILD
extra/liblo/PKGBUILD
extra/libxinerama/PKGBUILD
extra/libxp/PKGBUILD
extra/libxres/PKGBUILD
extra/libxt/PKGBUILD
extra/libxtst/PKGBUILD
extra/libxxf86vm/PKGBUILD
extra/mtr/PKGBUILD
extra/transmission/PKGBUILD
Diffstat (limited to 'community/lib32-libtxc_dxtn')
-rw-r--r-- | community/lib32-libtxc_dxtn/PKGBUILD | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/community/lib32-libtxc_dxtn/PKGBUILD b/community/lib32-libtxc_dxtn/PKGBUILD deleted file mode 100644 index 6306e1c7e..000000000 --- a/community/lib32-libtxc_dxtn/PKGBUILD +++ /dev/null @@ -1,36 +0,0 @@ -# $Id: PKGBUILD 91929 2013-05-29 16:41:31Z lcarlier $ -# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> - -_pkgbasename=libtxc_dxtn -pkgname=lib32-$_pkgbasename -pkgver=1.0.1 -pkgrel=4 -arch=(x86_64) -pkgdesc="S3 Texture Compression (S3TC) library for Mesa (32-bit)" -url="http://dri.freedesktop.org/wiki/S3TC" -license=(custom:BSD) -depends=(lib32-mesa) -makedepends=(gcc-multilib) -options=(!libtool) -source=(http://people.freedesktop.org/~cbrill/$_pkgbasename/$_pkgbasename-$pkgver.tar.bz2) -md5sums=('7105107f07ac49753f4b61ba9d0c79c5') - -build() { - cd "$srcdir/$_pkgbasename-$pkgver" - - CC="gcc -m32" ./configure --prefix=/usr --libdir=/usr/lib32 - make -} - -package() { - cd "$srcdir/$_pkgbasename-$pkgver" - - make DESTDIR="$pkgdir" install - - rm -rf "$pkgdir/usr/include" - - # License - mkdir -p "$pkgdir/usr/share/licenses/$pkgname" - sed -n '5,22{s|^ \* \?||;p}' txc_dxtn.h \ - > "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} |