Advertisement
yochananmarqos

revelation

Sep 14th, 2020
503
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.66 KB | None | 0 0
  1. pkgname=revelation
  2. pkgver=0.5.3
  3. pkgrel=1
  4. pkgdesc="A password manager for the GNOME desktop"
  5. arch=('x86_64')
  6. url="http://revelation.olasagasti.info"
  7. license=('GPL')
  8. depends=('gtk3' 'python-gobject' 'libpwquality' 'python-pycryptodomex' 'python-dbus')
  9. source=("https://github.com/mikelolasagasti/revelation/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz")
  10. sha256sums=('8976644b8904db179f5927ea9045c5082faefdfecf079845ca081321935bdfac')
  11.  
  12. build() {
  13.     cd "$pkgname-$pkgver"
  14.     ./autogen.sh
  15.     ./configure \
  16.         --prefix=/usr \
  17.         --disable-desktop-update \
  18.         --disable-mime-update
  19.     make
  20. }
  21.  
  22. package() {
  23.     cd "$pkgname-$pkgver"
  24.     make DESTDIR="$pkgdir" install
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement