diff options
author | Daniel Schadt <kingdread@gmx.de> | 2020-05-05 12:37:51 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2020-05-05 12:37:51 +0200 |
commit | 1f4427b3ef8b7965f96c6a35b520cdb0d10264d2 (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /candy-kingdom-git | |
parent | a3dee80193633c1edb94a7feef29bf1455425d53 (diff) | |
download | arch-pkgbuilds-1f4427b3ef8b7965f96c6a35b520cdb0d10264d2.tar.gz arch-pkgbuilds-1f4427b3ef8b7965f96c6a35b520cdb0d10264d2.tar.bz2 arch-pkgbuilds-1f4427b3ef8b7965f96c6a35b520cdb0d10264d2.zip |
Package has been moved to the AUR:
https://aur.archlinux.org/packages/candy-kingdom-git/
Diffstat (limited to 'candy-kingdom-git')
-rw-r--r-- | candy-kingdom-git/PKGBUILD | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/candy-kingdom-git/PKGBUILD b/candy-kingdom-git/PKGBUILD deleted file mode 100644 index 0952ffb..0000000 --- a/candy-kingdom-git/PKGBUILD +++ /dev/null @@ -1,38 +0,0 @@ -pkgname=candy-kingdom-git -_pkgname=candy-kingdom -pkgver=1388 -pkgrel=1 -pkgdesc="A collection of SAT solvers and tools for structure analysis in SAT problems." -arch=("any") -url="https://github.com/Udopia/candy-kingdom" -license=("MIT") -makedepends=("cmake" "git") -source=( - "${_pkgname}::git+https://github.com/Udopia/candy-kingdom.git#branch=master" -) -sha256sums=('SKIP') - -pkgver() { - cd "${_pkgname}" - git rev-list --count HEAD -} - -prepare() { - cd "${_pkgname}" - git submodule init - git submodule set-url -- lib/oscpack https://github.com/Udopia/oscpack.git - git submodule update -} - -build() { - mkdir -p "${_pkgname}/build" - cd "${_pkgname}/build" - cmake -DCMAKE_BUILD_TYPE=Release .. - make candy -} - -package() { - cd "${_pkgname}/build" - install -Dm 755 candy "${pkgdir}/usr/bin/candy" - install -Dm 644 libcandylib.a "${pkgdir}/usr/lib/libcandylib.a" -} |