mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:47:13 +08:00
25 lines
554 B
Bash
25 lines
554 B
Bash
#
|
|
# Core Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: abveritas@chakra-project.org
|
|
|
|
pkgname=pacman-helpme
|
|
pkgver=2013.01
|
|
pkgrel=1
|
|
pkgdesc="Scripts to assist with conflicts in updates"
|
|
arch=('x86_64')
|
|
url="http://www.chakra-project.org"
|
|
license=('GPL2')
|
|
depends=('filesystem')
|
|
makedepends=('asciidoc')
|
|
install=pacman-helpme.install
|
|
source=('pacman-helpme')
|
|
md5sums=('5c13e46fecfe8ae9f448338fadc905ea')
|
|
|
|
package() {
|
|
cd ${srcdir}
|
|
# setup /etc
|
|
mkdir ${pkgdir}/etc
|
|
install -m644 -t ${pkgdir}/etc pacman-helpme
|
|
}
|