Skip to content
Snippets Groups Projects
Commit f463f826 authored by Natanael Copa's avatar Natanael Copa
Browse files

added APKBUILD.proto

parent dddc5503
No related merge requests found
# This is an example APKBUILD file. Use this as a start to creating your own,
# and remove these comments.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Contributor: Your Name <youremail@domain.com>
pkgname=NAME
pkgver=VERSION
pkgrel=0
pkgdesc=""
arch=""
url=""
license='GPL'
depends=""
makedepends=""
install=
source="$pkgname-$pkgver.tar.gz"
md5sums="" #generate with 'makepkg -g'
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make || return 1
make DESTDIR="$pkgdir/" install
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment