Update archlinux package

This commit is contained in:
Loic Guegan 2023-04-30 16:29:19 +02:00
parent 3b9f2cfdbc
commit 7a3946885d

View file

@ -1,32 +1,37 @@
# Maintainer: Loic Guegan <loic.guegan@mailbox.org> # 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: Loic Guegan <loic.guegan@mailbox.org>
pkgname=ochess pkgname=ochess
pkgver=0.1 pkgver=v0.0.1
pkgrel=0.1 pkgrel=1
pkgdesc='Open source chess database/games management.' epoch=
arch=(x86_64) pkgdesc="Chess game analysis software written in c++"
url='https://gitlab.com/manzerbredes/ochess' arch=("any")
license=(GPL) url="https://gitlab.com/manzerbredes/ochess"
depends=() license=('GPLv3')
makedepends=(wxgtk3-dev gcc) groups=()
source=("ochess-master.tar.bz2") depends=(wxwidgets-gtk3)
sha256sums=('b9ca8efd769945b5cc55370a863d2f8f4bca82699c5f775c844a7b95a2829187') makedepends=(cmake wxwidgets-common)
options=(!buildflags) source=("http://loicguegan.com/files/ochess-v0.0.1.tar.gz")
sha256sums=(91948602423da0042f26777a8573f16fa02124843b2fcb10e238c70ef6d32288) #generate with 'makepkg -g'
prepare() {
cd "$srcdir/$pkgname-$pkgver"
}
build() { build() {
cd ochess-master cd "$srcdir/$pkgname-$pkgver"
mkdir -p build mkdir -p build
cd build cd build
cmake ../ cmake ../
make make -j4
} }
package() { package() {
cd "$srcdir/$pkgname-$pkgver"
mkdir -p $pkgdir/usr/bin/ cd build
mkdir -p $pkgdir/usr/share/ochess/ install -Dm775 ochess "${pkgdir}/usr/bin/ochess"
cd ochess-master/build/
cp ochess $pkgdir/usr/bin/
cp -r assets $pkgdir/usr/share/ochess/
} }