-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPKGBUILD
More file actions
34 lines (29 loc) · 728 Bytes
/
PKGBUILD
File metadata and controls
34 lines (29 loc) · 728 Bytes
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
27
28
29
30
31
32
33
34
# 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: Zaki Sangam <sangamzaki@gmail.com>
pkgname='Dots-0_0'
pkgver=1
pkgrel=1
pkgdesc="My custom rice"
arch=('x86_64')
url="https://github.com/Lazydev0/Dots-0_0"
license=('GPL')
depends=()
makedepends=()
backup=()
install=
source=('${pkgname}::git://github.com/Lazydev0/${pkgname}')
sha256sums=('SKIP')
pkgver() {
}
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}