mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
Added plugapps-scripts
This commit is contained in:
parent
71fce62921
commit
c3d24a255c
4 changed files with 36 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
# Maintainer: Mike Staszel <mikestaszel@plugapps.com>
|
||||
|
||||
pkgname=filesystem
|
||||
pkgver=2010.12
|
||||
pkgver=2011.1
|
||||
pkgrel=1
|
||||
pkgdesc="Base filesystem"
|
||||
arch=('arm')
|
||||
|
|
17
core/plugapps-scripts/PKGBUILD
Executable file
17
core/plugapps-scripts/PKGBUILD
Executable file
|
@ -0,0 +1,17 @@
|
|||
# Maintainer: Mike Staszel <mikestaszel@plugboxlinux.org>
|
||||
|
||||
pkgname=plugapps-scripts
|
||||
pkgver=2011.01
|
||||
pkgrel=1
|
||||
pkgdesc="Useful scripts and general fixes from PlugApps"
|
||||
arch=('arm')
|
||||
url="http://plugapps.com"
|
||||
license=('GPL')
|
||||
source=(README)
|
||||
install="plugapps-scripts.install"
|
||||
md5sums=('5cb87e1e776c81d4af134a884a1cdd48')
|
||||
|
||||
build() {
|
||||
mkdir -p $pkgdir/usr/share/plugapps
|
||||
install -m755 $srcdir/README $pkgdir/usr/share/plugapps/
|
||||
}
|
|
@ -1,3 +1,3 @@
|
|||
The plugapps-scripts package will contain fixes and scripts
|
||||
The plugapps-scripts package contains fixes and scripts
|
||||
that users can optionally run, as well as fixes we sometimes
|
||||
discover after updating packages.
|
||||
|
|
17
core/plugapps-scripts/plugapps-scripts.install
Normal file
17
core/plugapps-scripts/plugapps-scripts.install
Normal file
|
@ -0,0 +1,17 @@
|
|||
post_install() {
|
||||
echo -e "\033[1mNotice\033[0m"
|
||||
echo "Upgrading your installation..."
|
||||
# some commands here
|
||||
# more commands
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install
|
||||
}
|
||||
|
||||
post_remove() {
|
||||
}
|
||||
|
||||
op=$1
|
||||
shift
|
||||
$op $*
|
Loading…
Reference in a new issue