diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/qpxtool/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/qpxtool/PKGBUILD')
-rw-r--r-- | community/qpxtool/PKGBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/community/qpxtool/PKGBUILD b/community/qpxtool/PKGBUILD new file mode 100644 index 000000000..a3d0b2f9f --- /dev/null +++ b/community/qpxtool/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 91840 2013-05-28 17:05:29Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Krzysztof Stasiorowski <krzysiekst@gmail.com> + +pkgname=qpxtool +pkgver=0.7.2 +pkgrel=4 +pkgdesc="Allows better controll over optical drives to include QChecks and optimization settings." +arch=('i686' 'x86_64') +url="http://qpxtool.sourceforge.net/" +license=('GPL') +depends=('qt4') +source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2 + libpng15.patch) +md5sums=('b1235e74b8ef4fe087a6b64f5cfca14a' + 'ab9af7610277652c77c6d114422b2266') + +build() { + cd $srcdir/$pkgname-$pkgver + # Fix strict aliasing warnings + export CFLAGS="$CFLAGS -fno-strict-aliasing" + sed -i \ + -e 's|lib64|lib|' \ + -e 's|lrelease|lrelease-qt4|' \ + configure + patch -p1 <$srcdir/libpng15.patch + ./configure --prefix=/usr --sbindir=/usr/bin + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + mkdir -p $pkgdir/usr/bin + make DESTDIR=$pkgdir install +} |