summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 508dc92839d42f6ff03e9b8a90eec1a3a1643c8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>

pkgname=pngslice
pkgver=0.66
pkgrel=1
pkgdesc="The program performs this slicing for png images and writes a fragment of html to handle the image inclusion."
arch=('i686' 'x86_64')
url="http://sview01.wiredworkplace.net/pub/jjg/en/code/pngslice.html"
license=('GPL')
depends=('libpng')
source=(http://sview01.wiredworkplace.net/pub/jjg/code/$pkgname.tar.gz)

md5sums=('816313410dee225f417765b1af0e6186')

build() {
  cd "${srcdir}/$pkgname"

  ./configure --prefix=/usr
  make || return 1
# doesn't work yet:  make DESTDIR="${pgkdir}" install

  install -D -m755 "src/$pkgname" "${pkgdir}/usr/bin/$pkgname" || return 1
  install -D -m644 "src/$pkgname.1" "${pkgdir}/usr/share/man/man1/$pkgname.1" || return 1
}