diff options
Diffstat (limited to 'community/mpgtx/PKGBUILD')
-rw-r--r-- | community/mpgtx/PKGBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/community/mpgtx/PKGBUILD b/community/mpgtx/PKGBUILD new file mode 100644 index 000000000..e54ebb65c --- /dev/null +++ b/community/mpgtx/PKGBUILD @@ -0,0 +1,20 @@ +# $Id: PKGBUILD 5259 2009-11-07 12:46:05Z ibiru $ +# Contributor: Peter Baldwin <bald_pete@hotmail.com> +pkgname=mpgtx +pkgver=1.3.1 +pkgrel=2 +pkgdesc="A command line MPEG audio/video/system toolkit" +arch=('i686' 'x86_64') +url="http://mpgtx.sourceforge.net" +license=("GPL") +depends=() +source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) +md5sums=('d628060aa04ad3b40a175bf35f5167cf') + +build() { + cd $startdir/src/$pkgname-$pkgver + ./configure --prefix=/usr + make || return 1 + make PREFIX=$startdir/pkg/usr install + mv ${pkgdir}/usr/man ${pkgdir}/usr/share/ +} |