summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6a587779b0c80e035e7fd2390b15b7a4f097ac0e (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Maintainer: Simon Bachmann <simonbachmann@bluewin.ch>
pkgname=imgtools
pkgver=0.3
pkgrel=1
epoch=
pkgdesc="A Tk extension to scale and rotate photo images"
arch=('x86_64')
url="http://tkimgtools.sourceforge.net/index.html"
license=('BSD')
groups=()
depends=('tk>=8.6' )
makedepends=()
checkdepends=()
optdepends=('tkimg: support for more image formats')
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("https://sourceforge.net/projects/tkimgtools/files/$pkgver/$pkgname-$pkgver.tar.gz/download")
noextract=()
md5sums=('423d549faf818534bc0b75e9e614f2ef')
validpgpkeys=()

prepare() {
	cd "$pkgname-$pkgver"
}

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

check() {
	cd "$pkgname-$pkgver"
	make test
}

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