summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
2 files changed, 4 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b79e058ed935..c1d2c1fde86c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = darknet-alexeyab-git
pkgdesc = YOLO: Real Time Object Detection Neural Network Library (AlexeyAB fork)
pkgver = r1341.f058244
- pkgrel = 3
+ pkgrel = 4
url = https://github.com/AlexeyAB/darknet
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index b741b581f580..f1cd15ef761e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: acxz <akashpatel2008 at yahoo dot com>
pkgname=darknet-alexeyab-git
pkgver=r1341.f058244
-pkgrel=3
+pkgrel=4
pkgdesc='YOLO: Real Time Object Detection Neural Network Library (AlexeyAB fork)'
arch=('i686' 'x86_64')
url='https://github.com/AlexeyAB/darknet'
@@ -21,6 +21,7 @@ pkgver() {
cd "$_name"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
+
build() { # Creating build directory
cd "${srcdir}/${_name}/"
mkdir -p "build-release"
@@ -33,7 +34,7 @@ build() { # Creating build directory
-DCMAKE_INSTALL_PREFIX='/usr'
msg "Building the project"
- make -j4
+ make
}