diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-07-06 03:43:28 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-07-06 03:43:28 +0000 |
commit | b464c2860e91a60ffce805697b504bfbf7715148 (patch) | |
tree | 3054911ec7bee24f4b196eaaca8d65eb855332d5 /community/premake | |
parent | 4cd3fcfccda5c0375669bd300834ac77a0a617fb (diff) |
Sun Jul 6 03:41:15 UTC 2014
Diffstat (limited to 'community/premake')
-rw-r--r-- | community/premake/PKGBUILD | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/community/premake/PKGBUILD b/community/premake/PKGBUILD index 20b85f40e..47fbfa95a 100644 --- a/community/premake/PKGBUILD +++ b/community/premake/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 64914 2012-02-18 20:33:48Z lfleischer $ +# $Id: PKGBUILD 115018 2014-07-05 04:01:17Z fyan $ # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> # Contributor: revel <revelΘmuub·net> # Contributor: Marcos J. S. Magalhaes <mjsmagalhaes ^dot^ insc _at_ gmail ~dot~ com> pkgname=premake pkgver=4.3 -pkgrel=3 +pkgrel=4 pkgdesc="A simple build configuration and project generation tool using lua" arch=('i686' 'x86_64') url="http://industriousone.com/premake" @@ -21,5 +21,9 @@ build() { } package() { - install -Dm755 "$srcdir/premake-$pkgver/bin/release/premake4" "${pkgdir}/usr/bin/premake4" + cd "$srcdir/premake-$pkgver" + + install -Dm755 "bin/release/premake4" "${pkgdir}/usr/bin/premake4" + + install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } |