forked from Etersoft/eepm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
pkgbase = eepm | ||
pkgdesc = A package manager with universal interface for any platform | ||
pkgver = 3.58.0 | ||
pkgrel = 1 | ||
url = https://github.com/Etersoft/eepm/ | ||
arch = any | ||
license = AGPL3 | ||
makedepends = make | ||
depends = coreutils | ||
depends = findutils | ||
depends = diffutils | ||
depends = file | ||
depends = gawk | ||
depends = grep | ||
depends = gzip | ||
depends = less | ||
depends = sed | ||
depends = bash | ||
depends = ncurses | ||
source = eepm-3.58.0.tar.gz::https://github.com/Etersoft/eepm/archive/refs/tags/3.58.0.tar.gz | ||
sha256sums = c1fdae29e31fe9a24ce1ca16cf904b7eadfc4ea0daf0c8f480dca3ebb382b702 | ||
|
||
pkgname = eepm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Maintainer: Vitaly Lipatov <[email protected]> | ||
|
||
pkgname=eepm | ||
pkgver=3.58.0 | ||
pkgrel=1 | ||
pkgdesc="A package manager with universal interface for any platform" | ||
arch=('any') | ||
url="https://github.com/Etersoft/eepm/" | ||
license=('AGPL3') | ||
depends=(coreutils findutils diffutils file gawk grep gzip less sed bash ncurses) | ||
makedepends=('make') | ||
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Etersoft/eepm/archive/refs/tags/${pkgver}.tar.gz") | ||
sha256sums=('c1fdae29e31fe9a24ce1ca16cf904b7eadfc4ea0daf0c8f480dca3ebb382b702') | ||
|
||
package() { | ||
cd "$pkgname-$pkgver" | ||
make install DESTDIR=$pkgdir datadir=/usr/share bindir=/usr/bin mandir=/usr/share/man sysconfdir=/etc version=${pkgver}-${pkgrel} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
$ makepkg --printsrcinfo > .SRCINFO | ||
$ git add PKGBUILD .SRCINFO | ||
$ git commit -m "useful commit message" | ||
$ git push | ||
|
||
https://wiki.archlinux.org/title/AUR_submission_guidelines |