Files
snapz/PKGBUILD
T

53 lines
922 B
Bash

# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Maintainer: Your Name <youremail@domain.com>
pkgname=snapz
pkgver=1
pkgrel=1
epoch=
pkgdesc=""
arch=('x86_64')
url=""
license=('GPL')
groups=()
depends=()
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("file://snapzd.tar.gz")
noextract=()
md5sums=()
validpgpkeys=()
prepare() {
echo "$PWD"
}
build() {
echo "foo"
}
check() {
cd "$pkgname-$pkgver"
}
package() {
cd "$pkgname-$pkgver"
mkdir -p "$pkgdir/usr/bin"
mkdir -p "$pkgdir/etc/snapz/"
cp snapzd "$pkgdir/usr/bin"
mkdir -p "$pkgdir/usr/lib/systemd/system/"
cp snapzd.service "$pkgdir/usr/lib/systemd/system/"
}