summaryrefslogtreecommitdiff
path: root/pcr/guix-installer/PKGBUILD
blob: 0f9ebfdd42d1f18d03faa0fbac902138892ae975 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Copyright (C) 2019 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
pkgname=guix-installer
pkgver=v1.2.0
pkgrel=1
pkgdesc="A command line installer for Guix"
arch=(any)
url="https://www.gnu.org/software/guix/"
license=('GPL3')
depends=('coreutils'
         'glibc'
         'gnupg'
         'grep'
         'sed'
         'shadow'
         'wget'
         'which'
         'xz')

source=("https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh?h=${pkgver}"
        "https://git.savannah.gnu.org/cgit/guix.git/plain/COPYING?h=${pkgver}")

sha256sums=('cef7d941742661a5f9a89865a1389c19d3eeb0fe28da3f49eeac7a90d27f6cff'
            '8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903')
sha512sums=('6c3b68fd4f4cca43f72da51b1473db75c0015db9079fbfe78f97fdf08a1f5dcc4da41f1ead4d0f76ad0cf7d999fc1090406be2c27514d2b6362476213f3989e1'
            '7633623b66b5e686bb94dd96a7cdb5a7e5ee00e87004fab416a5610d59c62badaf512a2e26e34e2455b7ed6b76690d2cd47464836d7d85d78b51d50f7e933d5c')

prepare() {
    mkdir -p "${pkgname}-${pkgver}"
    cd "${pkgname}-${pkgver}"
    cp "${srcdir}/guix-install.sh?h=${pkgver}" guix-install.sh
    cp "${srcdir}/COPYING?h=${pkgver}" COPYING
}

package() {
    cd "${pkgname}-${pkgver}"
    install -d "${pkgdir}/usr/bin"
    install -m 755 guix-install.sh -t "${pkgdir}/usr/bin"

    install -d "${pkgdir}/usr/share/licenses/${pkgname}"
    install -Dm644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}/"
}