summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 203a80e4780a5c12e65fc5ae1ff8636a6a5bdb26 (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
# contributed by tomdeb <tomdeb@gmail.com>
#
pkgname=apwal
pkgver=0.4.5
pkgrel=3
pkgdesc="Apwal is a simple application launcher for Linux together with a powerful editor. "
url="http://apwal.free.fr"
license=("GPL")
arch=('i686' 'x86_64')
depends=('gtk2')
source=("http://apwal.free.fr/download/$pkgname-$pkgver.tar.gz")
md5sums=('2f15a1a680f842d8373a1c2725b53130')

build() {
  cd "$srcdir/$pkgname"
  make || return 1
}

package() {
  mkdir -p "$pkgdir/usr/bin"
  cd "$pkgdir/usr/bin"
  cp "$srcdir/$pkgname/src/apwal" "$pkgdir/usr/bin/"
  ln -s "apwal" "$pkgdir/usr/bin/apwal-editor"
}