mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 00:54:37 +08:00
44 lines
1.3 KiB
Bash
44 lines
1.3 KiB
Bash
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
# Contributions from Arch: https://projects.archlinux.org/svntogit/community.git/tree/trunk?h=packages/primus
|
|
# If you update this package,please remember to update lib32-primus!
|
|
pkgname=primus
|
|
pkgver=20151110
|
|
pkgrel=1
|
|
pkgdesc="Faster OpenGL offloading for Bumblebee (git sources)"
|
|
arch=('x86_64')
|
|
url="https://github.com/amonakov/primus"
|
|
license=('custom:ISC')
|
|
depends=('bumblebee')
|
|
makedepends=('git')
|
|
provides=('primus')
|
|
source=("git://github.com/amonakov/primus.git#commit=d1afbf6"
|
|
"register_cleanup.patch")
|
|
sha1sums=('SKIP'
|
|
'fd48f89c55c1ad854d7a985781faed2c52c0135f')
|
|
|
|
prepare() {
|
|
cd primus
|
|
|
|
patch -Np1 < "$srcdir/register_cleanup.patch"
|
|
}
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}"
|
|
|
|
install -D "lib/libGL.so.1" "$pkgdir/usr/lib/primus/libGL.so.1"
|
|
sed -e "s#^PRIMUS_libGL=.*#PRIMUS_libGL='/usr/\$LIB/primus'#" primusrun > primusrun.dist
|
|
install -D "primusrun.dist" "$pkgdir/usr/bin/primusrun"
|
|
|
|
install -D "primus.bash-completion" "$pkgdir/etc/bash_completion.d/primusrun"
|
|
|
|
gzip -9 "primusrun.1"
|
|
install -D "primusrun.1.gz" "$pkgdir/usr/share/man/man1/primusrun.1.gz"
|
|
|
|
install -D -m644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
}
|