Last active
October 5, 2017 15:33
-
-
Save f440/74f0ae1e92101c18d5fd5ba9be9559f6 to your computer and use it in GitHub Desktop.
PKGBUILD for https://github.com/pimterry/notes
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
pkgname=notes | |
pkgver=0.4.0 | |
pkgrel=1 | |
pkgdesc="Simple delightful note taking, with more unix and less lock-in." | |
arch=('any') | |
url="https://github.com/pimterry/notes" | |
license=('MIT') | |
md5sums=('c93c205640561c83cf31f8d25286b908') | |
package() { | |
cd "$pkgname-$pkgver" | |
install -D -m775 notes $pkgdir/usr/bin/notes | |
install -D -m644 notes.1 $pkgdir/usr/share/man/man1/notes.1 | |
install -D -m644 notes.bash_completion $pkgdir/usr/share/bash-completion/completions/notes | |
install -D -m644 _notes $pkgdir/usr/share/zsh/site-functions/_notes | |
install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment