summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 49794a61dd50d989a42818089fccd9215c87fdf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: kleintux <reg-archlinux AT klein DOT tuxli DOT ch> 
pkgname=diffh
pkgver=0.3.2
pkgrel=2
pkgdesc="Makes browsing diff output easy, converting it to highly-readable highlighted Wikipedia-style HTML"
arch=('i686' 'x86_64')
url="https://sourceforge.net/projects/$pkgname/"
license=('GPL2')
source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz")
md5sums=('f6a15436b0b367312cbc29091ce1a145')

build() {
	cd "$pkgname-$pkgver"
	./configure --prefix=/usr
	make
}

package() {
	cd "$pkgname-$pkgver"
	make DESTDIR="$pkgdir/" install
}