blob: a562317b4b5298d2490d413c3ca57adb928526aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Jason White <jasonaw0 at gmail dot com>
pkgname=button-lua
pkgver=0.0.5
pkgrel=1
pkgdesc="Used with Button. Allows generating build descriptions with Lua."
arch=('i686' 'x86_64')
url="https://github.com/jasonwhite/$pkgname"
license=('MIT')
depends=('lua')
optdepends=()
makedepends=()
source=("https://github.com/jasonwhite/$pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
sha1sums=('dc3ffd0b76481640086302ea9cbaaf323c154ceb')
build() {
cd "$pkgname-$pkgver"
make
}
package() {
cd "$pkgname-$pkgver"
install -Dm755 $pkgname "$pkgdir/usr/bin/$pkgname"
}
|