blob: cafdec491dd5971e72a51bc0acc384d1d925b134 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $Id: PKGBUILD 13826 2008-09-29 02:37:37Z douglas $
# 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' 'mips64el')
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
}
|