28 lines
No EOL
613 B
Bash
28 lines
No EOL
613 B
Bash
# makedeb configuration for pshell
|
|
pkgname=pshell
|
|
pkgver=1.0
|
|
pkgrel=1
|
|
pkgdesc="A modular Perl shell with SQLite command history"
|
|
url="https://git.urandom.link/kake26/pshell"
|
|
arch=('any')
|
|
license=('PerlArtistic' 'GPL')
|
|
maintainer="Paul M <codeberg@pngpst.net>"
|
|
depends=(
|
|
'perl'
|
|
'perl-dbi'
|
|
'perl-dbd-sqlite'
|
|
'perl-term-readline'
|
|
)
|
|
source=("$pkgname-$pkgver.tar.gz::file://../${pkgname}-${pkgver}.tar.gz")
|
|
sha256sums=('SKIP')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
perl Makefile.PL
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make install DESTDIR="${pkgdir}"
|
|
} |