Created
November 29, 2016 08:58
-
-
Save blippy/6eb4866f20feb6618a3b2e30f45cff24 to your computer and use it in GitHub Desktop.
Test PKGBUILD for neoleo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Maintainer: Mark Carter <alt.mcarter@gmail.com> | |
| pkgname=neoleo | |
| pkgver=3.0.1 | |
| pkgrel=1 | |
| pkgdesc="Fork of the GNU oleo lightweight spreadsheet" | |
| arch=('i686' 'x86_64') | |
| url="https://github.com/blippy/neoleo" | |
| license=('GPL') | |
| source=("https://github.com/blippy/neoleo/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz") | |
| md5sums=('802229a004de2c4a4b0efea78355f655') | |
| build() { | |
| cd "$pkgname-$pkgver" | |
| ./configure --prefix=/usr | |
| make | |
| } | |
| package() { | |
| cd "$pkgname-$pkgver" | |
| make DESTDIR="$pkgdir/" install | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment