-
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.
Xbps package multiplatform creation prepared
- Loading branch information
Showing
4 changed files
with
20 additions
and
8 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
3 changes: 1 addition & 2 deletions
3
packaging/xbps/xbps-create.sh → packaging/xbps/xbps-create-amd64.sh
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
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,16 @@ | ||
#!/bin/sh | ||
|
||
# arg $1 - target directory | ||
|
||
xbps-create --architecture x86_64 \ | ||
--pkgver "$1" \ | ||
--dependencies "git>=2.9.5 xdg-utils>=1.0.0 libbsd>=0.2.1" \ | ||
--homepage "https://github.com/slamko/spmn" \ | ||
--desc "Suckless Patch Manager" \ | ||
--compression=xz \ | ||
--license GPLv3 \ | ||
--maintainer "Viacheslav <https://github.com/slamko>" \ | ||
--long-desc "Command line tool for easy patch managing for suckless software." \ | ||
"$1" | ||
|
||
|
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