You've already forked mint-backgrounds-sonya-pkg
Compare commits
24 Commits
d97ad8ff66
...
master
Author | SHA1 | Date | |
---|---|---|---|
f67c12a3f6
|
|||
a2b77d4a0f
|
|||
8bb911b423
|
|||
5471510594
|
|||
dc27800038
|
|||
bb89414188
|
|||
2d9923c7e7
|
|||
c12453e04e
|
|||
7f82dc02ae
|
|||
fa1f2a853c
|
|||
3900f3b47f
|
|||
e1813632bf | |||
cb55948252
|
|||
0bf8329bb1 | |||
93667b0b64
|
|||
a690a25d4d | |||
e7f0deebc0 | |||
68941097ff | |||
ea1d6199de | |||
81060860b2 | |||
2e03e57271 | |||
09499a4317 | |||
0555178a1b | |||
abdb4dd476 |
7
.SRCINFO
7
.SRCINFO
@ -1,11 +1,12 @@
|
|||||||
pkgbase = mint-backgrounds-sonya
|
pkgbase = mint-backgrounds-sonya
|
||||||
pkgdesc = The backgrounds included in Linux Mint 18.2 Sonya
|
pkgdesc = The backgrounds included in Linux Mint 18.2 Sonya
|
||||||
pkgver = 1.1
|
pkgver = 1.1
|
||||||
pkgrel = 1
|
pkgrel = 10
|
||||||
url = http://packages.linuxmint.com/pool/main/m/mint-backgrounds-sonya
|
url = http://packages.linuxmint.com/pool/main/m/mint-backgrounds-sonya
|
||||||
arch = any
|
arch = any
|
||||||
license = Various
|
license = GPL3
|
||||||
source = http://packages.linuxmint.com/pool/main/m/mint-backgrounds-sonya/mint-backgrounds-sonya1.1.tar.gz
|
source = http://packages.linuxmint.com/pool/main/m/mint-backgrounds-sonya/mint-backgrounds-sonya_1.1.tar.gz
|
||||||
|
md5sums = 8434cdecd5fee375061f4a5c0cf9956c
|
||||||
|
|
||||||
pkgname = mint-backgrounds-sonya
|
pkgname = mint-backgrounds-sonya
|
||||||
|
|
||||||
|
12
.editorconfig
Normal file
12
.editorconfig
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# EditorConfig is awesome: https://EditorConfig.org
|
||||||
|
|
||||||
|
# top-most EditorConfig file
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
end_of_line = lf
|
||||||
|
charset = utf-8
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
insert_final_newline = false
|
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
pkg
|
||||||
|
src
|
||||||
|
*tar.gz
|
||||||
|
*tar.zst
|
||||||
|
*tar.zst.sig
|
6
PKGBUILD
6
PKGBUILD
@ -1,11 +1,13 @@
|
|||||||
|
#Maintainer: Seantum <tsiegele AT gmx DOT at>
|
||||||
pkgname=mint-backgrounds-sonya
|
pkgname=mint-backgrounds-sonya
|
||||||
pkgver=1.1
|
pkgver=1.1
|
||||||
pkgrel=1
|
pkgrel=10
|
||||||
pkgdesc="The backgrounds included in Linux Mint 18.2 Sonya"
|
pkgdesc="The backgrounds included in Linux Mint 18.2 Sonya"
|
||||||
license=('Various')
|
license=('GPL3')
|
||||||
arch=('any')
|
arch=('any')
|
||||||
url="http://packages.linuxmint.com/pool/main/m/mint-backgrounds-sonya"
|
url="http://packages.linuxmint.com/pool/main/m/mint-backgrounds-sonya"
|
||||||
source=("$url/mint-backgrounds-sonya_$pkgver.tar.gz")
|
source=("$url/mint-backgrounds-sonya_$pkgver.tar.gz")
|
||||||
|
md5sums=("8434cdecd5fee375061f4a5c0cf9956c")
|
||||||
package() {
|
package() {
|
||||||
mkdir -p $pkgdir/usr/share/backgrounds/linuxmint-sonya
|
mkdir -p $pkgdir/usr/share/backgrounds/linuxmint-sonya
|
||||||
cp -a $srcdir/$pkgname/backgrounds/linuxmint-sonya $pkgdir/usr/share/backgrounds/
|
cp -a $srcdir/$pkgname/backgrounds/linuxmint-sonya $pkgdir/usr/share/backgrounds/
|
||||||
|
61
README.md
Normal file
61
README.md
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
# mint-backgrounds-sonya
|
||||||
|
|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
|
This repository contains build files to build the Arch Linux package `mint-backgrounds-sonya`. Instead of building the
|
||||||
|
package yourself, it can also be obtained from the following private repository. More detailed are described
|
||||||
|
[here](#obtaining-pre-built-packages-from-a-repository).
|
||||||
|
|
||||||
|
## Build
|
||||||
|
|
||||||
|
Clone this repository and use `makepkg` to build the package by yourself. For example:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://aur.archlinux.org/mint-backgrounds-sonya.git
|
||||||
|
cd mint-backgrounds-sonya
|
||||||
|
makepkg
|
||||||
|
```
|
||||||
|
|
||||||
|
## Yay
|
||||||
|
|
||||||
|
The build files are also available via AUR and can be installed via an AUR helper like `yay`.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
yay --sync --aur mint-backgrounds-sonya
|
||||||
|
```
|
||||||
|
|
||||||
|
## Obtaining pre-built packages from a repository
|
||||||
|
|
||||||
|
Instead of building the packages locally, it is also possible to configure an additional repository to install the
|
||||||
|
package directly via `pacman`. The following commands are used to create the repository, configure the GPG key to verify
|
||||||
|
the packages and install the package:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Create drop-in directory
|
||||||
|
sudo mkdir --parents /etc/pacman.d/repos
|
||||||
|
|
||||||
|
# Create configuration of the repository 'volker.raschek'
|
||||||
|
sudo tee /etc/pacman.d/repos/volker.raschek.conf > /dev/null <<'EOF'
|
||||||
|
[volker.raschek]
|
||||||
|
SigLevel = PackageRequired TrustedOnly
|
||||||
|
Include = /etc/pacman.d/repos/volker.raschek.list
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# Create mirror list of the repository 'volker.raschek'
|
||||||
|
sudo tee /etc/pacman.d/repos/volker.raschek.list > /dev/null <<'EOF'
|
||||||
|
Server = https://aur.cryptic.systems/$repo/$arch
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# Import gpg key of the repository 'volker.raschek'
|
||||||
|
sudo pacman-key --keyserver hkps://keys.openpgp.org --recv-keys 9B146D11A9ED6CA7E279EB1A852BCC170D81A982
|
||||||
|
|
||||||
|
# Extend existing pacman configuration of the repository 'volker.raschek'
|
||||||
|
sudo echo "Include = /etc/pacman.d/repos/*.conf" >> /etc/pacman.conf
|
||||||
|
|
||||||
|
# Update pacman cache
|
||||||
|
sudo pacman --sync --refresh
|
||||||
|
|
||||||
|
# Install the package and receive updates directly via pacman :)
|
||||||
|
sudo pacman --sync mint-backgrounds-sonya
|
||||||
|
```
|
Reference in New Issue
Block a user