mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
added extra/xscreensaver
This commit is contained in:
parent
a97a5cfb81
commit
6d906116ec
2 changed files with 77 additions and 0 deletions
10
extra/xscreensaver/LICENSE
Normal file
10
extra/xscreensaver/LICENSE
Normal file
|
@ -0,0 +1,10 @@
|
|||
/* xscreensaver, Copyright (c) 1991-2013 Jamie Zawinski <jwz@jwz.org>
|
||||
*
|
||||
* Permission to use, copy, modify, distribute, and sell this software and its
|
||||
* documentation for any purpose is hereby granted without fee, provided that
|
||||
* the above copyright notice appear in all copies and that both that
|
||||
* copyright notice and this permission notice appear in supporting
|
||||
* documentation. No representations are made about the suitability of this
|
||||
* software for any purpose. It is provided "as is" without express or
|
||||
* implied warranty.
|
||||
*/
|
67
extra/xscreensaver/PKGBUILD
Normal file
67
extra/xscreensaver/PKGBUILD
Normal file
|
@ -0,0 +1,67 @@
|
|||
# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
|
||||
# Contributor: Eric Bélanger <eric@archlinux.org>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - disable marbling on aarch64, FTBFS
|
||||
|
||||
pkgname=xscreensaver
|
||||
pkgver=6.02
|
||||
pkgrel=1
|
||||
pkgdesc='Screen saver and locker for the X Window System'
|
||||
url='https://www.jwz.org/xscreensaver/'
|
||||
arch=('x86_64')
|
||||
license=('BSD')
|
||||
depends=(
|
||||
'gtk2' 'glu' 'xorg-appres' 'libglvnd' 'libjpeg-turbo' 'libjpeg.so'
|
||||
'libsystemd.so' 'libx11' 'libxcrypt' 'libcrypt.so' 'libxext' 'libxft' 'libxi'
|
||||
'libxinerama' 'libxmu' 'libxrandr' 'libxt' 'libxxf86vm' 'perl-libwww' 'pam'
|
||||
'libpam.so' 'glibc' 'glib2' 'gdk-pixbuf2' 'gdk-pixbuf-xlib'
|
||||
)
|
||||
makedepends=('bc' 'intltool' 'libxpm' 'gdm' 'systemd' 'systemd-libs')
|
||||
optdepends=('gdm: for login manager support')
|
||||
backup=('etc/pam.d/xscreensaver')
|
||||
source=(https://www.jwz.org/xscreensaver/${pkgname}-${pkgver}.tar.gz
|
||||
LICENSE)
|
||||
sha512sums=('2291ec6ca2d2a24dae975f7f3a8e1733c06f289eb74955db5b3344c7ddcc1d72f82d380df984ef9199f2ed7ab8a7bc920da57d98f589ae5fd1cee082755ba1ff'
|
||||
'863c699479b2ec2775a0d1cba22e615929194a14af164b3513e46a0c04229da6547255a4da8f7f1bbb40906898c124ed3c9ec2436b76b62affcb62385af9783e')
|
||||
b2sums=('2d931fe93230e8c7344abd9180e26ab8775f82604e6f4804c82821c486203be567708cf50f7a11276a6b39df493fe5652b4198765ecb3bc5afc8cbc5a01d4801'
|
||||
'cacb6ba39d6ecb8703ef5f5a7dc74de0ca805cce73b43a8b9b6b4c255c909aa9b5e692de76c2fbd4da26ce6efb5f2a46138c43b1b37f53cee6d20fd6ed41f4a9')
|
||||
|
||||
# workaround for broken tarball
|
||||
noextract=($pkgname-$pkgver.tar.gz)
|
||||
prepare() {
|
||||
bsdtar xf ${pkgname}-${pkgver}.tar.gz || true
|
||||
if [[ $CARCH == "aarch64" ]]; then
|
||||
sed -i ${pkgname}-${pkgver}/hacks/Makefile.in -e 's@marbling binaryhorizon@binaryhorizon@'
|
||||
fi
|
||||
}
|
||||
|
||||
build() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--libexecdir=/usr/lib \
|
||||
--with-x-app-defaults=/usr/share/X11/app-defaults \
|
||||
--without-setuid-hacks \
|
||||
--without-setcap-hacks \
|
||||
--with-pam \
|
||||
--with-login-manager \
|
||||
--with-gtk \
|
||||
--with-gl \
|
||||
--without-gle \
|
||||
--with-pixbuf \
|
||||
--with-jpeg
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
install -d "${pkgdir}/etc/pam.d"
|
||||
make install_prefix="${pkgdir}" install
|
||||
install -Dm 644 ../LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
|
||||
echo "NotShowIn=KDE;GNOME;" >> "${pkgdir}/usr/share/applications/xscreensaver-properties.desktop"
|
||||
}
|
||||
|
||||
# vim: ts=2 sw=2 et:
|
Loading…
Reference in a new issue