Skip to content

Instantly share code, notes, and snippets.

@shanebrowncs
Last active January 9, 2017 01:19
Show Gist options
  • Save shanebrowncs/a14763247157f02c6ad82006f6104adf to your computer and use it in GitHub Desktop.
Save shanebrowncs/a14763247157f02c6ad82006f6104adf to your computer and use it in GitHub Desktop.
Arch Linux PKGBUILD for alarm-cli application
# Maintainer: Shane "SajeOne" Brown <contact@shane-brown.ca>
pkgname=alarm-cli
pkgver=1.1
pkgrel=2
pkgdesc="Simple alarm app for the CLI"
arch=('any')
url="https://github.com/SajeOne/alarm-cli"
license=('GPL')
depends=('python')
makedepends=()
provides=('alarm-cli')
source=("git+https://github.com/SajeOne/alarm-cli")
md5sums=('SKIP')
package() {
cd "$srcdir/$pkgname"
python setup.py install --root="$pkgdir/" --optimize=1
}
# vim:set ts=2 sw=2 et:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment