blob: 6826f94235a685b7dd561f137bae0990bf2bad7d (
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
|
# $Id: PKGBUILD 107296 2014-03-16 20:11:08Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Simon Parzer <simon.parzer@gmail.com>
pkgname=grafx2
pkgver=2.4
pkgrel=5
_pkgrev=2035
pkgdesc='Pixelart-oriented painting program'
arch=('x86_64' 'i686')
url='http://code.google.com/p/grafx2/'
license=('GPL2')
install=grafx2.install
depends=('sdl_ttf' 'sdl_image' 'lua' 'desktop-file-utils' 'gtk-update-icon-cache')
makedepends=('gendesk')
options=('!emptydirs')
source=("http://grafx2.googlecode.com/files/$pkgname-$pkgver.$_pkgrev-src.tgz")
sha256sums=('5818caea63cd3cf3318baf01dd20f81ec61e4514443000c80a41b68ab3f17a6b')
prepare() {
gendesk -f -n --pkgname "$pkgname" --pkgdesc "$pkgdesc" --name 'GrafX2' \
--genericname 'Drawing program' --exec 'grafx %U' \
--mimetypes 'image/bmp;image/gif;image/png;image/x-tga;image/tiff' \
--categories 'Graphics;2DGraphics;RasterGraphics'
}
build() {
make -C "$pkgname/src"
}
package() {
make -C "$pkgname/src" prefix=/usr DESTDIR="$pkgdir" install
install -Dm644 "$pkgname.desktop" \
"$pkgdir/usr/share/applications/$pkgname.desktop"
install -Dm644 "$pkgname/doc/README.txt" \
"$pkgdir/usr/share/doc/$pkgname/readme.txt"
}
# vim:set ts=2 sw=2 et:
|