summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ee5501740be12040e666b8cd3ff5a65d22c2769d (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
# Maintainer: Icarus Mitchellson <mumei AT airmail DOT cc>

pkgname=highlighterkit
_pkgname=HighlighterKit
pkgrel=1
pkgver=0.1.3
pkgdesc="A framework to allow easy incorporation of syntax highlighting features into your application"
arch=('i686' 'x86_64')
url="http://wiki.gnustep.org/index.php/HighlighterKit"
license=('GPL')
groups=('gnustep-apps')
depends=('gnustep-base' 'gnustep-gui' 'gnustep-back')
makedepends=('gcc-objc' 'gnustep-make')
source=("http://download.savannah.nongnu.org/releases/gnustep-nonfsf/HighlighterKit-0.1.3.tar.gz")
sha256sums=('cae933c9e402352ae70e96cbe70a52dd504b5d8efd5910cc4c3ff35a29fba86c')

build() {
  cd "$_pkgname-$pkgver"
  export GNUSTEP_MAKEFILES="$(gnustep-config --variable=GNUSTEP_MAKEFILES)"
  make
}

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