mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 13:44:37 +08:00
23 lines
602 B
Bash
23 lines
602 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
|
|
pkgname=mirror-check
|
|
pkgver=1.0
|
|
pkgrel=4
|
|
pkgdesc="Checks whether the locally used mirror is synced with the main"
|
|
arch=('x86_64')
|
|
url="http://www.chakraos.org"
|
|
license=('GPL2')
|
|
makedepends=('asciidoc')
|
|
source=('mirror-check' 'mirror-check.desktop')
|
|
md5sums=('48e35a4e632185c666e2e9199060cae5'
|
|
'5a0a0a1774ecd4808827e4c3cd6eca7c')
|
|
|
|
package() {
|
|
cd ${srcdir}
|
|
|
|
install -m 755 -D mirror-check "$pkgdir/usr/bin/mirror-check"
|
|
install -Dm644 "${srcdir}/mirror-check.desktop" "${pkgdir}/usr/share/applications/mirror-check.desktop"
|
|
}
|