mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-13 03:42:37 +01:00
42 lines
1021 B
Plaintext
42 lines
1021 B
Plaintext
# Contributor: Jeremy Thomerson <jeremy@thomersonfamily.com>
|
|
# Maintainer: Jeremy Thomerson <jeremy@thomersonfamily.com>
|
|
pkgname=pastebinc
|
|
pkgver=0.9.1
|
|
pkgrel=0
|
|
pkgdesc="utility to pipe data into a paste on pastebin.com or a similar site"
|
|
url="https://github.com/jthomerson/pastebinc"
|
|
arch="all"
|
|
license="ASL 2.0"
|
|
depends=
|
|
depends_dev=
|
|
makedepends="wget glib-dev curl-dev"
|
|
install=""
|
|
subpackages=""
|
|
source="saveas-https://github.com/jthomerson/pastebinc/tarball/RELEASE_0.9.1/$pkgname-$pkgver-$pkgrel.tar.gz"
|
|
_builddir="$srcdir/jthomerson-pastebinc-e16f22d"
|
|
|
|
makeparams="VERSION=$pkgver-$pkgrel CONFDIR=/etc/pastebinc"
|
|
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
make $makeparams clean || return 1
|
|
make $makeparams || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make $makeparams DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
md5sums="68a1c51b2fa39ecb6fd29a14f2e9f591 pastebinc-0.9.1-0.tar.gz"
|