Last active
April 21, 2020 18:41
-
-
Save ursjoss/b833d68d72b569d96e470d4029c449c0 to your computer and use it in GitHub Desktop.
PKGBUILD for yapet-2.4
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: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> | |
# Contributor: Robert Knauer <robert@privatdemail.net | |
# Contributor: rich_o <rich_o@lavabit.com> | |
# Contributor: teddy_beer_maniac <teddy_beer_maniac@wp.pl> | |
pkgname=yapet | |
pkgver=2.4 | |
pkgrel=1 | |
pkgdesc="Yet Another Password Encryption Tool" | |
arch=('x86_64') | |
url="https://yapet.guengel.ch/" | |
license=('GPL') | |
depends=('ncurses' 'openssl') | |
makedepends=('cppunit') | |
source=(https://yapet.guengel.ch/downloads/$pkgname-$pkgver.tar.xz) | |
sha256sums=('0e4e459a53e5f854613ea4206528c79c6e48f13b4d415072d54bb19dae55556c') | |
build() { | |
cd "${srcdir}"/$pkgname-$pkgver | |
./configure --prefix=/usr | |
make | |
} | |
package() { | |
cd "${srcdir}"/$pkgname-$pkgver | |
make DESTDIR="${pkgdir}" install | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment