1
0
Fork 0

Made PKGBUILD the right way.

This commit is contained in:
Alexander Andreev 2022-03-20 18:20:46 +04:00
parent 4131f7b77e
commit b2aec04023
Signed by: Arav
GPG Key ID: 1327FE8A374CC86F
1 changed files with 12 additions and 8 deletions

View File

@ -1,15 +1,23 @@
# Maintainer: Alexander "Arav" Andreev <me@arav.top>
pkgname=dwelling-upload
pkgname=dwelling-upload-git
pkgver=1.0.0
pkgrel=1
pkgdesc="Arav's Dwelling / Upload"
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
url="https://git.arav.top/Arav/dwelling-upload"
license=('MIT')
source=('git+https://git.arav.top/Arav/dwelling-upload.git')
md5sums=('SKIP')
makedepends=('go')
groups=()
depends=()
makedepends=('git' 'go')
provides=('dwelling-upload')
conflicts=('dwelling-upload')
replaces=()
backup=('etc/dwelling/upload.yaml')
options=()
install=
source=('dwelling-upload-git::git+https://git.arav.top/Arav/dwelling-upload.git')
noextract=()
md5sums=('SKIP')
build() {
cd "$srcdir/$pkgname"
@ -19,8 +27,4 @@ build() {
package() {
cd "$srcdir/$pkgname"
make DESTDIR="$pkgdir/" install
}
post_install() {
chown dwupload:dwupload /var/log/dwelling-upload
}