summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b67dca053e702864d73af7eec26fabef5fc3c8dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Maintainer epsilonKNOT <epsilon.aur@epsilonKNOT.xyz>

pkgbase=purritobin
pkgname=purritobin
pkgver=0.4.0
pkgrel=1
pkgdesc="ultra fast, minimalistic, encrypted command line paste-bin"
url="https://bsd.ac/"
license=('ISC')
arch=('any')
source=( "${pkgname}-${pkgver}::https://github.com/PurritoBin/PurritoBin/archive/${pkgver}.tar.gz" )
md5sums=('7b625284040bea10dd4780cbb94f4f68')
depends=( usockets )
makedepends=( uwebsockets )

build() {
	cd PurritoBin-${pkgver}
	make all
}

package() {
	cd PurritoBin-${pkgver}
	make PREFIX="/usr" DESTDIR="$pkgdir/" install
}

#vim: syntax=sh