1f6d96325b
* Temporary drop or correct multiple packages that needed updates for x86_64. * Update volume service to deprecate hard coded paths. * system-utils and sleep to common packages. * Add weston kiosk.ini for future use. * Add DIRTY variable, if true it will not clean.
19 lines
478 B
Makefile
19 lines
478 B
Makefile
PKG_NAME="sleep"
|
|
PKG_VERSION=""
|
|
PKG_SHA256=""
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="OSS"
|
|
PKG_DEPENDS_TARGET="systemd"
|
|
PKG_SITE=""
|
|
PKG_URL=""
|
|
PKG_LONGDESC="Sleep configuration"
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
makeinstall_target() {
|
|
mkdir -p $INSTALL/usr/config/sleep.conf.d
|
|
cp sleep.conf $INSTALL/usr/config/sleep.conf.d/sleep.conf
|
|
|
|
mkdir -p $INSTALL/usr/lib/systemd/system-sleep/
|
|
cp sleep.sh $INSTALL/usr/lib/systemd/system-sleep/sleep
|
|
chmod +x $INSTALL/usr/lib/systemd/system-sleep/sleep
|
|
}
|