summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAngelo Theodorou2023-07-14 18:15:02 +0200
committerAngelo Theodorou2023-07-14 18:15:02 +0200
commit091cd00610e66b4c6914ee300c2b5ebc767d3b0f (patch)
tree0fd5fee2d047e46558f54f489ae9d79b97585bdd
parentb0927f5ebdbc10097fd8d2cbea535f9bf06bc81d (diff)
downloadaur-ncpong-git.tar.gz
Remove prepare pass and add repos to source array
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD14
2 files changed, 10 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 80b27f4cb2b1..029f3e0af12c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -13,6 +13,8 @@ pkgbase = ncpong-git
conflicts = ncpong
options = !strip
source = git+https://github.com/nCine/ncPong
+ source = git+https://github.com/nCine/ncPong-data
+ md5sums = SKIP
md5sums = SKIP
pkgname = ncpong-git
diff --git a/PKGBUILD b/PKGBUILD
index 984da7e68ca4..c2343d7ef2e9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -12,8 +12,14 @@ makedepends=('git' 'cmake')
conflicts=('ncpong')
provides=('ncpong')
options=(!strip)
-source=('git+https://github.com/nCine/ncPong')
-md5sums=('SKIP')
+source=(
+ 'git+https://github.com/nCine/ncPong'
+ 'git+https://github.com/nCine/ncPong-data'
+)
+md5sums=(
+ 'SKIP'
+ 'SKIP'
+)
pkgver() {
cd "$srcdir/ncPong"
@@ -23,10 +29,6 @@ pkgver() {
)
}
-prepare() {
- git clone https://github.com/nCine/ncPong-data || git -C ncPong-data pull
-}
-
build() {
mkdir -p build && cd build