diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-03-22 19:20:07 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-03-22 19:20:07 (GMT) |
commit | b7e8a22add9ff7e7ca41fe8c5fc25ea501eb3e2d (patch) | |
tree | fba15f03bf498dc1da24d9017e8c35df920e0eec /abs/extra-testing/hd2u | |
parent | 50a39a9338fbddb79f581fdc52ee5e398054c6e7 (diff) | |
download | linhes_pkgbuild-b7e8a22add9ff7e7ca41fe8c5fc25ea501eb3e2d.zip linhes_pkgbuild-b7e8a22add9ff7e7ca41fe8c5fc25ea501eb3e2d.tar.gz linhes_pkgbuild-b7e8a22add9ff7e7ca41fe8c5fc25ea501eb3e2d.tar.bz2 |
Bring XBMC to LinHES.
Diffstat (limited to 'abs/extra-testing/hd2u')
-rw-r--r-- | abs/extra-testing/hd2u/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/abs/extra-testing/hd2u/PKGBUILD b/abs/extra-testing/hd2u/PKGBUILD new file mode 100644 index 0000000..8cde95c --- /dev/null +++ b/abs/extra-testing/hd2u/PKGBUILD @@ -0,0 +1,21 @@ +# $Id: PKGBUILD 13676 2008-09-27 21:20:46Z giovanni $ +# Maintainer: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: Damir Perisa <damir.perisa@bluewin.ch> + +pkgname=hd2u +pkgver=1.0.3 +pkgrel=1 +pkgdesc="Dos2Unix text file converter" +arch=('i686' 'x86_64') +license=('GPL2') +url="http://hany.sk/~hany/software/hd2u/" +depends=('popt') +source=(http://hany.sk/~hany/_data/hd2u/$pkgname-$pkgver.tgz) +md5sums=('8f6668fafb279aa19f956ec0515717b6') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr + make || return 1 + make prefix=$pkgdir/usr install +} |