We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f2d805 commit 66f116eCopy full SHA for 66f116e
libzakalwe-git/lure.sh
@@ -0,0 +1,30 @@
1
+name='libzakalwe-git'
2
+version='1.0.0'
3
+release='0'
4
+desc='Library for functions shared across zakalwe projects'
5
+homepage='https://gitlab.com/hors/libzakalwe'
6
+maintainer="Nil Geisweiller <ngeiswei@gmail.com>"
7
+architectures=('amd64')
8
+license=('BSD-2-Clause')
9
+provides=('libzakalwe')
10
+conflicts=('libzakalwe')
11
+build_deps=('make' 'gcc')
12
+sources=("git+https://gitlab.com/hors/libzakalwe.git")
13
+checksums=('SKIP')
14
+
15
+version() {
16
+ cd "${srcdir}/libzakalwe"
17
+ git-version
18
+}
19
20
+build() {
21
22
+ ./configure
23
+ make -j
24
25
26
+package() {
27
28
+ mkdir -p "${pkgdir}/usr/lib"
29
+ make PREFIX="${pkgdir}/usr" install
30
0 commit comments