mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 19:47:14 +08:00
44 lines
1.6 KiB
Bash
44 lines
1.6 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=hibernate-script
|
|
pkgver=2.0
|
|
pkgrel=1
|
|
pkgdesc="Set of scripts for managing tux on ice, hibernation and suspend to RAM"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.tuxonice.net"
|
|
license=('GPL')
|
|
depends=('bash' 'kbd')
|
|
options=(!strip)
|
|
backup=('etc/hibernate/hibernate.conf' 'etc/hibernate/tuxonice.conf' \
|
|
'etc/hibernate/disk.conf' 'etc/hibernate/ram.conf' \
|
|
'etc/hibernate/common.conf' 'etc/hibernate/blacklisted-modules' \
|
|
'etc/hibernate/ususpend-both.conf' 'etc/hibernate/sysfs-ram.conf' \
|
|
'etc/hibernate/ususpend-ram.conf' 'etc/hibernate/sysfs-disk.conf' \
|
|
'etc/hibernate/ususpend-disk.conf')
|
|
source=(http://www.tuxonice.net/downloads/all/${pkgname}-${pkgver}.tar.gz
|
|
hibernate-script-${pkgver}-arch.patch
|
|
hibernate.rc)
|
|
md5sums=('5c21770afbae503450e3c4a5502bf29d'
|
|
'2e6dba2c90e90952b8b1f167045c38e6'
|
|
'5d7e83902a00bf72b1de97a5450a558e')
|
|
|
|
|
|
build() {
|
|
cd $srcdir/hibernate-script-$pkgver
|
|
# Fix scriptlets to work properly with Archlinux
|
|
patch -Np1 -i $srcdir/hibernate-script-${pkgver}-arch.patch || return 1
|
|
export BASE_DIR=${pkgdir}
|
|
export PREFIX=/usr
|
|
export MAN_DIR=$BASE_DIR$PREFIX/share/man
|
|
install -dm755 ${pkgdir}/etc/{rc,logrotate}.d
|
|
./install.sh || return 1
|
|
install -m 755 $srcdir/hibernate.rc $pkgdir/etc/rc.d/hibernate-cleanup
|
|
}
|