diff options
Diffstat (limited to 'community/qpxtool/PKGBUILD')
-rw-r--r-- | community/qpxtool/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/qpxtool/PKGBUILD b/community/qpxtool/PKGBUILD new file mode 100644 index 000000000..9d8987cb2 --- /dev/null +++ b/community/qpxtool/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 15647 2010-04-13 11:41:23Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Krzysztof Stasiorowski <krzysiekst@gmail.com> + +pkgname=qpxtool +pkgver=0.7.1_002 +pkgrel=1 +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=('qt') +source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2) +md5sums=('755321a0196b16d06857550aac74ff50') + +build() { + cd $srcdir/$pkgname-$pkgver + + # Fix strict aliasing warnings + export CFLAGS="$CFLAGS -fno-strict-aliasing" + sed -i 's|lib64|lib|' configure + ./configure --prefix=/usr + make || return 1 + mkdir -p $pkgdir/usr/bin + make DESTDIR=$pkgdir install +} |