Skip to content

Instantly share code, notes, and snippets.

@blippy
Created November 29, 2016 08:58
Show Gist options
  • Select an option

  • Save blippy/6eb4866f20feb6618a3b2e30f45cff24 to your computer and use it in GitHub Desktop.

Select an option

Save blippy/6eb4866f20feb6618a3b2e30f45cff24 to your computer and use it in GitHub Desktop.
Test PKGBUILD for neoleo
# 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