You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello thank you for the amazing project. can you put it inside AUR? It makes the installation
and more importantly updating process much easier for us Arch linux users.
here is a template to get started. Basically it's a simple bash script: This gives you more detail
$ cat /usr/share/pacman/PKGBUILD.proto
# 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: Your Name <[email protected]>
pkgname=gempyre
pkgver=VERSION
pkgrel=1
epoch=
pkgdesc="Gempyre is a UI multiplatform framework. Supporting Windows, Mac OSX, Linux, Raspberry OS and Android."
arch=(x86_64)
url="https://github.com/mmertama/Gempyre"
license=('MIT')
groups=()
depends=(gcc)
makedepends=(gcc)
checkdepends=()
optdepends=()
provides=(gempyre)
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("$pkgname-$pkgver.tar.gz"
"$pkgname-$pkgver.patch")
noextract=()
md5sums=()
validpgpkeys=()
prepare() {
cd "$pkgname-$pkgver"
patch -p1 -i "$srcdir/$pkgname-$pkgver.patch"
}
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr
make
}
check() {
cd "$pkgname-$pkgver"
make -k check
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
BTW please go for snake_style a lot of libraries including std use this style in C/C++. having both styles in a source code isn't pretty at all ❤️
The text was updated successfully, but these errors were encountered:
Hello thank you for the amazing project. can you put it inside AUR? It makes the installation
and more importantly updating process much easier for us Arch linux users.
here is a template to get started. Basically it's a simple bash script:
This gives you more detail
$ cat /usr/share/pacman/PKGBUILD.proto
BTW please go for snake_style a lot of libraries including
std
use this style in C/C++. having both styles in a source code isn't pretty at all ❤️The text was updated successfully, but these errors were encountered: