mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 22:47:14 +08:00
25 lines
614 B
Bash
25 lines
614 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Daniele Cocca <jmc@chakra-project.org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=networkmanager-dispatcher-ntpdate
|
|
pkgver=1.0
|
|
pkgrel=1
|
|
pkgdesc="Dispatcher script for ntpdate."
|
|
arch=(any)
|
|
license=('BSD')
|
|
url="http://www.gnome.org/projects/NetworkManager"
|
|
depends=('networkmanager' 'ntp')
|
|
source=("10-ntpdate")
|
|
md5sums=('8e52fa4c53b9e9c76b23bf77e79df1fe')
|
|
|
|
package() {
|
|
install -Dm700 "${srcdir}/10-ntpdate" "${pkgdir}/etc/NetworkManager/dispatcher.d/10-ntpdate"
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|