Initial commit
This commit is contained in:
commit
73120dca56
10 changed files with 383 additions and 0 deletions
120
PKGBUILD
Normal file
120
PKGBUILD
Normal file
|
|
@ -0,0 +1,120 @@
|
|||
# Maintainer: Christian Schendel <doppelhelix@gmail.com>
|
||||
# Contributor: Zeph <zeph33@gmail.com>
|
||||
# https://gitlab.manjaro.org/packages/extra/libpamac
|
||||
ENABLE_FLATPAK=1
|
||||
ENABLE_SNAPD=0
|
||||
|
||||
pkgname=libpamac-aur
|
||||
pkgver=11.7.3
|
||||
pkgrel=4
|
||||
_pkgfixver=$pkgver
|
||||
|
||||
_commit='087af94264cf1e79a809a2f5dbb570a617e09d45'
|
||||
b2sums=('81e60cdb7e3391505626903b53c858b9faf586b5158d1ba6d232382d7103cb7a1d8eb18a880e50a24097eb7243d4b17842fa7f1fe321793e962d1bd4862b5207'
|
||||
'8107b9fa09bcb78d9f5cc60b3e57681c19013822eee2ec73d6ba41b35be2337cdeb15c8959879dea0c6022110328cd3ae373e2e9a0be6b29ea29220144ccea99'
|
||||
'e7c51e95d0a14ac872df803a15ba6afb96d500b0c9f274b5c34e994557a4b4b6bcbdb100172dd16d7862f97719927d6b313171ffc1a41046badc81dbbc6f4d16')
|
||||
|
||||
pkgdesc="Pamac package manager library based on libalpm"
|
||||
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
|
||||
url="https://github.com/manjaro/libpamac/"
|
||||
license=('GPL-3.0-or-later')
|
||||
depends=(
|
||||
appstream
|
||||
'appstream-glib>=0.7.18-1'
|
||||
archlinux-appstream-data
|
||||
bash
|
||||
dbus-glib
|
||||
git
|
||||
'glib2>=2.42'
|
||||
glibc
|
||||
'gnutls>=3.4'
|
||||
json-glib
|
||||
'libalpm.so=15'
|
||||
libnotify
|
||||
libsoup3
|
||||
'pacman>=7.0'
|
||||
polkit
|
||||
'vte3>=0.38'
|
||||
)
|
||||
makedepends=(
|
||||
asciidoc
|
||||
gettext
|
||||
gobject-introspection
|
||||
itstool
|
||||
meson
|
||||
ninja
|
||||
systemd
|
||||
'vala>=0.46'
|
||||
)
|
||||
backup=(
|
||||
'etc/pamac.conf'
|
||||
)
|
||||
conflicts=(
|
||||
'libpamac'
|
||||
'libpamac-all'
|
||||
)
|
||||
provides=(
|
||||
'libpamac.so=11'
|
||||
'libpamac-appstream.so=11'
|
||||
"libpamac=$_pkgfixver"
|
||||
)
|
||||
options=(!emptydirs !strip)
|
||||
install=pamac.install
|
||||
source=(
|
||||
"libpamac-$pkgver-$pkgrel.zip::$url/archive/$_commit.zip"
|
||||
'fix-appstream-data.sh'
|
||||
'fix-appstream-data.hook'
|
||||
)
|
||||
|
||||
define_meson=''
|
||||
if [ "${ENABLE_FLATPAK}" = 1 ]; then
|
||||
depends+=('flatpak')
|
||||
define_meson+=' -Denable-flatpak=true'
|
||||
fi
|
||||
|
||||
if [ "${ENABLE_SNAPD}" = 1 ]; then
|
||||
depends+=('snapd' 'snapd-glib')
|
||||
define_meson+=' -Denable-snap=true'
|
||||
fi
|
||||
|
||||
create_links() {
|
||||
# create soname links
|
||||
find "$pkgdir" -type f -name '*.so*' ! -path '*xorg/*' -print0 | while read -d $'\0' _lib; do
|
||||
_soname=$(dirname "${_lib}")/$(readelf -d "${_lib}" | grep -Po 'SONAME.*: \[\K[^]]*' || true)
|
||||
_base=$(echo ${_soname} | sed -r 's/(.*)\.so.*/\1.so/')
|
||||
[[ -e "${_soname}" ]] || ln -s $(basename "${_lib}") "${_soname}"
|
||||
[[ -e "${_base}" ]] || ln -s $(basename "${_soname}") "${_base}"
|
||||
done
|
||||
}
|
||||
|
||||
prepare() {
|
||||
cd "$srcdir/libpamac-$_commit"
|
||||
# adjust version string
|
||||
sed -i -e "s|\"$_pkgfixver\"|\"$pkgver-$pkgrel\"|g" src/version.vala
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$srcdir/libpamac-$_commit"
|
||||
mkdir -p builddir
|
||||
cd builddir
|
||||
meson setup \
|
||||
--buildtype=release \
|
||||
-Denable-aur=true \
|
||||
-Denable-appstream=true \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc $define_meson
|
||||
# build
|
||||
meson compile
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/libpamac-$_commit/builddir"
|
||||
DESTDIR="$pkgdir" ninja install
|
||||
# fix appstream issue
|
||||
install -Dm644 "$srcdir/fix-appstream-data.hook" "$pkgdir/etc/pacman.d/hooks/fix-appstream-data.hook"
|
||||
install -Dm755 "$srcdir/fix-appstream-data.sh" "$pkgdir/etc/pacman.d/hooks.bin/fix-appstream-data.sh"
|
||||
create_links
|
||||
|
||||
}
|
||||
|
||||
# vim: set ft=sh ts=4 sw=4 et:
|
||||
Loading…
Add table
Add a link
Reference in a new issue