Commit 14202de
72
plików
+389
dodanych
-74
usuniętych
@@ -0,0 +1,58 @@
1
+pkgname: linux-headers
2
+pkgver: '7.1.8'
3
+pkgrel: '1'
4
+pkgdesc: 'Nagłówki jądra Pagan Linux (przygotowane źródła) – do budowy modułów zewnętrznych (np. nvidia-kernel).'
5
+url: 'https://www.kernel.org/'
6
+arch: x86_64
7
+license:
8
+- GPL-2.0-only
9
+depends: []
10
+makedepends:
11
+- bc
12
+- kmod
13
+- elfutils
14
+- python
15
+- openssl
16
+- flex
17
+- bison
18
+- perl
19
+- cpio
20
+
21
+source:
22
+- 'https://cdn.kernel.org/pub/linux/kernel/v7.x/linux-${pkgver}.tar.xz'
23
+
24
+sha256sums:
25
+- SKIP
26
+
27
+build: |
28
+ cd linux-${pkgver}
29
+
30
+ # Ta sama konfiguracja co pakiet linux – moduły muszą pasować ABI.
31
+ make defconfig
32
+
33
+ ./scripts/config --set-str CONFIG_LOCALVERSION "-pagan"
34
+ ./scripts/config --disable CONFIG_LOCALVERSION_AUTO
35
+ ./scripts/config --disable CONFIG_WERROR
36
+ ./scripts/config --disable CONFIG_MODULE_SIG
37
+ ./scripts/config --enable CONFIG_MODULES
38
+
39
+ make olddefconfig
40
+
41
+ # Przygotuj drzewo do budowy modułów zewnętrznych (scripts, .config, ...)
42
+ make -j$(nproc) modules_prepare
43
+
44
+package: |
45
+ cd linux-${pkgver}
46
+
47
+ # UAPI headers do /usr/include
48
+ make headers_install INSTALL_HDR_PATH="${PKGDIR}/usr"
49
+
50
+ # Pełne, przygotowane źródła do /usr/src/linux-headers-<ver>-pagan
51
+ mkdir -p "${PKGDIR}/usr/src"
52
+ cp -a . "${PKGDIR}/usr/src/linux-headers-${pkgver}-pagan"
53
+
54
+ # Link build/source w katalogu modułów (jeśli linux już zainstalowany w chroot)
55
+ if [ -d "${PKGDIR}/usr/lib/modules/${pkgver}-pagan" ]; then
56
+ ln -sfn "/usr/src/linux-headers-${pkgver}-pagan" "${PKGDIR}/usr/lib/modules/${pkgver}-pagan/build"
57
+ ln -sfn "/usr/src/linux-headers-${pkgver}-pagan" "${PKGDIR}/usr/lib/modules/${pkgver}-pagan/source"
58
+ fi
0
59
new file mode 100644
@@ -0,0 +1,130 @@
1
+pkgname: linux
2
+pkgver: '7.1.8'
3
+pkgrel: '1'
4
+pkgdesc: 'Pagan Linux kernel (rolling) – jądro, moduły, System.map i config z lokalnym dostrojeniem Pagan.'
5
+url: 'https://www.kernel.org/'
6
+arch: x86_64
7
+license:
8
+- GPL-2.0-only
9
+depends: []
10
+makedepends:
11
+- bc
12
+- kmod
13
+- elfutils
14
+- python
15
+- openssl
16
+- flex
17
+- bison
18
+- perl
19
+- cpio
20
+- 'util-linux'
21
+
22
+source:
23
+- 'https://cdn.kernel.org/pub/linux/kernel/v7.x/linux-${pkgver}.tar.xz'
24
+
25
+sha256sums:
26
+- SKIP
27
+
28
+build: |
29
+ cd linux-${pkgver}
30
+
31
+ # === Konfiguracja Pagan (identyczna jak w build-pagan.sh) ===
32
+ make defconfig
33
+
34
+ ./scripts/config --set-str CONFIG_LOCALVERSION "-pagan"
35
+ ./scripts/config --disable CONFIG_LOCALVERSION_AUTO
36
+ ./scripts/config --disable CONFIG_WERROR
37
+
38
+ # Preemption i scheduling (desktop)
39
+ ./scripts/config --enable CONFIG_PREEMPT
40
+ ./scripts/config --disable CONFIG_PREEMPT_VOLUNTARY
41
+ ./scripts/config --set-val CONFIG_HZ 1000
42
+ ./scripts/config --enable CONFIG_SCHED_HRTICK
43
+
44
+ # Moduły
45
+ ./scripts/config --enable CONFIG_MODULES
46
+ ./scripts/config --enable CONFIG_MODULE_UNLOAD
47
+ ./scripts/config --enable CONFIG_MODULE_FORCE_UNLOAD
48
+ ./scripts/config --enable CONFIG_MODVERSIONS
49
+ ./scripts/config --disable CONFIG_MODULE_SIG
50
+
51
+ # EFI
52
+ ./scripts/config --enable CONFIG_EFI
53
+ ./scripts/config --enable CONFIG_EFI_STUB
54
+
55
+ # KVM
56
+ ./scripts/config --enable CONFIG_VIRTUALIZATION
57
+ ./scripts/config --enable CONFIG_KVM
58
+ ./scripts/config --enable CONFIG_KVM_INTEL
59
+ ./scripts/config --enable CONFIG_KVM_AMD
60
+
61
+ # WiFi (moduły)
62
+ ./scripts/config --enable CONFIG_WIRELESS
63
+ ./scripts/config --module CONFIG_CFG80211
64
+ ./scripts/config --module CONFIG_MAC80211
65
+ ./scripts/config --module CONFIG_IWLWIFI
66
+ ./scripts/config --module CONFIG_IWLMVM
67
+ ./scripts/config --module CONFIG_ATH9K
68
+ ./scripts/config --module CONFIG_ATH10K
69
+ ./scripts/config --module CONFIG_RTW88
70
+ ./scripts/config --module CONFIG_BRCMFMAC
71
+
72
+ # Live ISO / dysk (squashfs + overlay + ISO9660 + loop) – w jądrze
73
+ ./scripts/config --enable CONFIG_BLK_DEV_LOOP
74
+ ./scripts/config --enable CONFIG_SQUASHFS
75
+ ./scripts/config --enable CONFIG_SQUASHFS_XZ
76
+ ./scripts/config --enable CONFIG_SQUASHFS_ZSTD
77
+ ./scripts/config --enable CONFIG_OVERLAY_FS
78
+ ./scripts/config --enable CONFIG_ISO9660_FS
79
+ ./scripts/config --enable CONFIG_JOLIET
80
+ ./scripts/config --enable CONFIG_ZISOFS
81
+ ./scripts/config --enable CONFIG_UDF_FS
82
+ ./scripts/config --enable CONFIG_EFI_FS
83
+ ./scripts/config --enable CONFIG_EFI_PARTITION
84
+ ./scripts/config --enable CONFIG_NLS_UTF8
85
+ ./scripts/config --enable CONFIG_NLS_CODEPAGE_437
86
+ ./scripts/config --enable CONFIG_DEVTMPFS
87
+ ./scripts/config --enable CONFIG_DEVTMPFS_MOUNT
88
+ ./scripts/config --enable CONFIG_TMPFS
89
+
90
+ make olddefconfig
91
+
92
+ # === Kompilacja ===
93
+ make -j$(nproc) bzImage
94
+ make -j$(nproc) modules
95
+
96
+package: |
97
+ cd linux-${pkgver}
98
+
99
+ # Moduły do PKGDIR/usr (usrmerge: /lib → usr/lib)
100
+ make INSTALL_MOD_PATH="${PKGDIR}/usr" modules_install
101
+
102
+ # Jądro + System.map + config do /boot
103
+ install -Dm644 arch/x86/boot/bzImage "${PKGDIR}/boot/vmlinuz-${pkgver}-pagan"
104
+ ln -sf "vmlinuz-${pkgver}-pagan" "${PKGDIR}/boot/vmlinuz-linux"
105
+ install -Dm644 System.map "${PKGDIR}/boot/System.map-${pkgver}-pagan"
106
+ ln -sf "System.map-${pkgver}-pagan" "${PKGDIR}/boot/System.map"
107
+ install -Dm644 .config "${PKGDIR}/boot/config-${pkgver}-pagan"
108
+
109
+ # Absolutne symlinki build/source z modules_install są blokowane przez pag
110
+ # (security) – tworzymy je w hooku post-install po instalacji linux-headers.
111
+ rm -f "${PKGDIR}/usr/lib/modules/${pkgver}-pagan/build" \
112
+ "${PKGDIR}/usr/lib/modules/${pkgver}-pagan/source"
113
+
114
+hooks:
115
+ 'post-install': |
116
+ # Po aktualizacji jądra: przebuduj initramfs + GRUB (rolling bez nowego ISO).
117
+ KV="$(uname -r 2>/dev/null)"
118
+ # build symlink do nagłówków (jeśli linux-headers jest zainstalowany)
119
+ if [ -d "/usr/src/linux-headers-${KV}" ] && [ -d "/usr/lib/modules/${KV}" ]; then
120
+ ln -sfn "/usr/src/linux-headers-${KV}" "/usr/lib/modules/${KV}/build"
121
+ ln -sfn "/usr/src/linux-headers-${KV}" "/usr/lib/modules/${KV}/source"
122
+ fi
123
+ if command -v pagan-initramfs >/dev/null 2>&1; then
124
+ pagan-initramfs
125
+ elif command -v pag >/dev/null 2>&1; then
126
+ pag initramfs-update
127
+ fi
128
+ if command -v pag >/dev/null 2>&1; then
129
+ pag grub-update
130
+ fi
0
131
new file mode 100644
@@ -0,0 +1,43 @@
1
+pkgname: nvidia-kernel
2
+pkgver: '610.57.04'
3
+pkgrel: '1'
4
+pkgdesc: 'Moduły jądra NVIDIA (open-gpu-kernel-modules) dla kernela Pagan Linux. Budowane pod bieżącą wersję jądra – po aktualizacji jądra przebuduj ten pakiet.'
5
+url: 'https://github.com/NVIDIA/open-gpu-kernel-modules'
6
+arch: x86_64
7
+license:
8
+- GPL-2.0-only
9
+depends:
10
+- nvidia
11
+- linux
12
+makedepends:
13
+- linux-headers
14
+- kmod
15
+
16
+source:
17
+- 'https://github.com/NVIDIA/open-gpu-kernel-modules/archive/refs/tags/${pkgver}.tar.gz'
18
+
19
+sha256sums:
20
+- SKIP
21
+
22
+build: |
23
+ cd open-gpu-kernel-modules-${pkgver}
24
+ KV=$(ls -d /usr/src/linux-headers-* 2>/dev/null | sed 's|.*linux-headers-||' | head -n1)
25
+ [ -n "$KV" ] || { echo "BŁĄD: brak linux-headers (linux-headers musi być zainstalowany)"; exit 1; }
26
+ make -j$(nproc) modules \
27
+ SYSSRC="/usr/src/linux-headers-${KV}" \
28
+ SYSOUT="/usr/src/linux-headers-${KV}"
29
+
30
+package: |
31
+ cd open-gpu-kernel-modules-${pkgver}
32
+ KV=$(ls -d /usr/src/linux-headers-* 2>/dev/null | sed 's|.*linux-headers-||' | head -n1)
33
+ make modules_install \
34
+ SYSSRC="/usr/src/linux-headers-${KV}" \
35
+ SYSOUT="/usr/src/linux-headers-${KV}" \
36
+ DESTDIR="${PKGDIR}"
37
+
38
+hooks:
39
+ 'post-install': |
40
+ # Odśwież initramfs (moduły nvidia w initramfs dla wcześniejszego startu)
41
+ if command -v pagan-initramfs >/dev/null 2>&1; then
42
+ pagan-initramfs
43
+ fi
0
44
new file mode 100644
@@ -0,0 +1,84 @@
1
+pkgname: paganlinux
2
+pkgver: '0.0.1'
3
+pkgrel: '1'
4
+pkgdesc: 'Base system of PaganLinux, contains all folders and startup scripts.'
5
+url: 'https://paganlinux.eu'
6
+arch: x86_64
7
+depends: []
8
+makedepends:
9
+- zstd
10
+- 'util-linux'
11
+
12
+source:
13
+- 'https://paganlinux.eu/static/pagan-loki-pingwin.png'
14
+- 'https://download.sourceforge.net/pagan/files/paganlinux-${pkgver}.tar.xz'
15
+
16
+sha256sums:
17
+- SKIP
18
+- SKIP
19
+
20
+footprint: |
21
+ drwxr-xr-x root/root bin/
22
+ -rwxr-xr-x root/root bin/which
23
+ drwxr-xr-x root/root etc/
24
+ lrwxrwxrwx root/root etc/mtab -> ../proc/self/mounts
25
+ drwxr-xr-x root/root lib/
26
+ lrwxrwxrwx root/root lib/lsb -> services
27
+ drwxr-xr-x root/root lib/services/
28
+ -rwxr-xr-x root/root lib/services/init-functions
29
+ -rw-r--r-- root/root lib/services/init.in
30
+ drwxr-xr-x root/root lib/services/setup-paganlinux/
31
+ -rw-r--r-- root/root lib/services/setup-paganlinux/setup-paganlinux.locales.gz
32
+ drwx------ root/root root/
33
+ lrwxrwxrwx root/root root/bashrc -> ../etc/bashrc
34
+ lrwxrwxrwx root/root root/profile.d -> ../etc/profile.d
35
+ drwxr-xr-x root/root sbin/
36
+ lrwxrwxrwx root/root sbin/chroot-paganlinux -> install-paganlinux
37
+ -rwxr-xr-x root/root sbin/flushmem
38
+ lrwxrwxrwx root/root sbin/generate-paganlinux -> install-paganlinux
39
+ -rwxr-xr-x root/root sbin/genfstab
40
+ -rwxr-xr-x root/root sbin/install-paganlinux
41
+ -rwxr-xr-x root/root sbin/mkinitramfs
42
+ -rwxr-xr-x root/root sbin/setup-paganlinux
43
+ -rwxr-xr-x root/root sbin/unsquash-paganlinux
44
+ drwxr-xr-x root/root usr/
45
+ drwxr-xr-x root/root usr/share/
46
+ drwxr-xr-x root/root usr/share/icons/
47
+ drwxr-xr-x root/root usr/share/icons/hicolor/
48
+ drwxr-xr-x root/root usr/share/icons/hicolor/128x128/
49
+ drwxr-xr-x root/root usr/share/icons/hicolor/128x128/places/
50
+ -rw-r--r-- root/root usr/share/icons/hicolor/128x128/places/paganlinux.png
51
+ drwxr-xr-x root/root var/
52
+ lrwxrwxrwx root/root var/lock -> /run/lock
53
+ drwxr-xr-x root/root var/log/
54
+ lrwxrwxrwx root/root var/run -> /run
55
+
56
+footprint_paganlinux_man: |
57
+ drwxr-xr-x root/root usr/share/man/
58
+ drwxr-xr-x root/root usr/share/man/man1/
59
+ -rw-r--r-- root/root usr/share/man/man1/paganlinux.1.gz
60
+ drwxr-xr-x root/root usr/share/man/man8/
61
+ -rw-r--r-- root/root usr/share/man/man8/genfstab.8.gz
62
+
63
+hooks:
64
+ 'post-install': |
65
+ if [ -f usr/lib/os-release ]; then
66
+ sed -i "/VERSION/d" usr/lib/os-release
67
+ sed -i "/URL/d" usr/lib/os-release
68
+ sed -i "/LOGO/d" usr/lib/os-release
69
+ echo "VERSION=systemd
70
+ VERSION_ID="0.0.1"
71
+ LOGO=paganlinux.png
72
+ HOME_URL="https://paganlinux.eu"" >> usr/lib/os-release
73
+ fi
74
+
75
+build: |
76
+ cd paganlinux-${pkgver}
77
+ [ -z "$patchname" ] || patch -Np1 -i ../$patchname
78
+ make DESTDIR=${PKGDIR} install
79
+ # post-install autogen
80
+
81
+package: |
82
+ # Logo ze źródła (source[0]) -> ikona dystrybucji
83
+ install -Dm644 pagan-loki-pingwin.png \
84
+ ${PKGDIR}/usr/share/icons/hicolor/128x128/places/paganlinux.png
@@ -610,7 +610,7 @@ hooks:
610
610
611
611
${NORMAL}\n
612
612
build: |
613
- meson setup --prefix /usr --buildtype plain --libexecdir lib --sbindir bin -D b_pie=true libvirt-12.6.0 builddir --libexecdir=/usr/lib/${name} --sbindir=/usr/bin -Dnetcf=disabled
613
+ meson setup --prefix /usr --buildtype plain --libexecdir lib --sbindir bin -D b_pie=true libvirt-12.6.0 builddir --libexecdir=/usr/lib/${pkgname} --sbindir=/usr/bin -Dnetcf=disabled
614
614
meson compile -C builddir
615
615
DESTDIR=${PKGDIR} meson install -C builddir
616
616
package: |
@@ -1437,7 +1437,7 @@ build: |
1437
1437
mkdir build
1438
1438
cd build
1439
1439
1440
- qmake ../${name}-everywhere-src-${pkgver}
1440
+ qmake ../${pkgname}-everywhere-src-${pkgver}
1441
1441
1442
1442
make
1443
1443
@@ -3923,7 +3923,7 @@ footprint: |
3923
3923
drwxr-xr-x root/root usr/share/
3924
3924
3925
3925
build: |
3926
- cd ${name}-everywhere-src-${pkgver}
3926
+ cd ${pkgname}-everywhere-src-${pkgver}
3927
3927
3928
3928
mkdir .git
3929
3929
./configure -prefix /usr \
@@ -3965,7 +3965,7 @@ build: |
3965
3965
-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
3966
3966
3967
3967
# Fix wrong qmake path in pri file
3968
- sed -i "s|${name}-everywhere-src-${pkgver}|/usr|" \
3968
+ sed -i "s|${pkgname}-everywhere-src-${pkgver}|/usr|" \
3969
3969
${PKGDIR}/usr/lib/qt/mkspecs/modules/qt_lib_bootstrap_private.pri
3970
3970
3971
3971
rm -f ${PKGDIR}/usr/lib/*.la
@@ -384,7 +384,7 @@ build: |
384
384
mkdir build
385
385
cd build
386
386
387
- qmake ../${name}-everywhere-src-${pkgver}
387
+ qmake ../${pkgname}-everywhere-src-${pkgver}
388
388
make
389
389
make INSTALL_ROOT=${PKGDIR} install
390
390
@@ -297,7 +297,7 @@ build: |
297
297
mkdir build
298
298
cd build
299
299
300
- qmake ../${name}-everywhere-src-${pkgver}
300
+ qmake ../${pkgname}-everywhere-src-${pkgver}
301
301
302
302
make
303
303
make INSTALL_ROOT=${PKGDIR} install
@@ -206,7 +206,7 @@ build: |
206
206
mkdir build
207
207
cd build
208
208
209
- qmake ../${name}-everywhere-src-${pkgver}
209
+ qmake ../${pkgname}-everywhere-src-${pkgver}
210
210
make
211
211
make INSTALL_ROOT=${PKGDIR} install
212
212
@@ -1066,7 +1066,7 @@ footprint: |
1066
1066
build: |
1067
1067
mkdir build
1068
1068
cd build
1069
- qmake ../${name}-everywhere-src-${pkgver}
1069
+ qmake ../${pkgname}-everywhere-src-${pkgver}
1070
1070
make
1071
1071
make INSTALL_ROOT=${PKGDIR} install
1072
1072
@@ -74,7 +74,7 @@ build: |
74
74
mkdir build
75
75
cd build
76
76
77
- qmake ../${name}-everywhere-src-${pkgver}
77
+ qmake ../${pkgname}-everywhere-src-${pkgver}
78
78
make
79
79
make INSTALL_ROOT=${PKGDIR} install
80
80
@@ -79,7 +79,7 @@ build: |
79
79
mkdir build
80
80
cd build
81
81
82
- qmake ../${name}-everywhere-src-${pkgver}
82
+ qmake ../${pkgname}-everywhere-src-${pkgver}
83
83
make
84
84
make INSTALL_ROOT=${PKGDIR} install
85
85
@@ -426,7 +426,7 @@ footprint: |
426
426
-rw-r--r-- root/root usr/lib/qt/qml/QtPositioning/qmldir
427
427
428
428
build: |
429
- cd ${name}-everywhere-src-${pkgver}
429
+ cd ${pkgname}-everywhere-src-${pkgver}
430
430
patch -Np1 -i ../kf5-1.patch
431
431
patch -Np1 -i ../consolidate-1.patch
432
432
sed -e 's|c++14|c++17|g' -e '/c++1z/d' -i \
@@ -439,7 +439,7 @@ build: |
439
439
mkdir build
440
440
cd build
441
441
442
- qmake ../${name}-everywhere-src-${pkgver}
442
+ qmake ../${pkgname}-everywhere-src-${pkgver}
443
443
make
444
444
make INSTALL_ROOT=${PKGDIR} install
445
445
@@ -459,7 +459,7 @@ build: |
459
459
mkdir build
460
460
cd build
461
461
462
- qmake ../${name}-everywhere-src-${pkgver}
462
+ qmake ../${pkgname}-everywhere-src-${pkgver}
463
463
464
464
make
465
465
make INSTALL_ROOT=${PKGDIR} install
@@ -656,7 +656,7 @@ build: |
656
656
mkdir build
657
657
cd build
658
658
659
- qmake ../${name}-everywhere-src-${pkgver}
659
+ qmake ../${pkgname}-everywhere-src-${pkgver}
660
660
661
661
make
662
662
make INSTALL_ROOT=${PKGDIR} install
@@ -130,7 +130,7 @@ build: |
130
130
mkdir build
131
131
cd build
132
132
133
- qmake ../${name}-everywhere-src-${pkgver}
133
+ qmake ../${pkgname}-everywhere-src-${pkgver}
134
134
135
135
make
136
136
make INSTALL_ROOT=${PKGDIR} install
@@ -214,11 +214,11 @@ footprint: |
214
214
-rw-r--r-- root/root usr/lib/qt/mkspecs/modules/qt_lib_scripttools_private.pri
215
215
216
216
build: |
217
- cd ${name}-everywhere-src-${pkgver}
217
+ cd ${pkgname}-everywhere-src-${pkgver}
218
218
sed -i 's|^asm volatile ($|asm (|' src/3rdparty/javascriptcore/JavaScriptCore/jit/JITStubs.cpp
219
219
mkdir build
220
220
cd build
221
- qmake ../${name}-everywhere-src-${pkgver}
221
+ qmake ../${pkgname}-everywhere-src-${pkgver}
222
222
make
223
223
make INSTALL_ROOT=${PKGDIR} install
224
224
@@ -106,7 +106,7 @@ build: |
106
106
mkdir build
107
107
cd build
108
108
109
- qmake ../${name}-everywhere-src-${pkgver}
109
+ qmake ../${pkgname}-everywhere-src-${pkgver}
110
110
111
111
make
112
112
make INSTALL_ROOT=${PKGDIR} install
@@ -81,7 +81,7 @@ build: |
81
81
mkdir build
82
82
cd build
83
83
84
- qmake ../${name}-everywhere-src-${pkgver}
84
+ qmake ../${pkgname}-everywhere-src-${pkgver}
85
85
86
86
make
87
87
make INSTALL_ROOT=${PKGDIR} install
@@ -419,7 +419,7 @@ footprint: |
419
419
build: |
420
420
mkdir build
421
421
cd build
422
- qmake ../${name}-everywhere-src-${pkgver}
422
+ qmake ../${pkgname}-everywhere-src-${pkgver}
423
423
make
424
424
make INSTALL_ROOT=${PKGDIR} install
425
425
@@ -477,7 +477,7 @@ build: |
477
477
Categories=Qt;Development;Debugger;
478
478
EOf
479
479
480
- cd ../${name}-everywhere-src-${pkgver}
480
+ cd ../${pkgname}-everywhere-src-${pkgver}
481
481
482
482
# install missing icons and desktop files
483
483
for icon in src/linguist/linguist/images/icons/linguist-*-32.png ; do
@@ -379,7 +379,7 @@ build: |
379
379
mkdir build
380
380
cd build
381
381
382
- qmake ../${name}-everywhere-src-${pkgver}
382
+ qmake ../${pkgname}-everywhere-src-${pkgver}
383
383
384
384
make
385
385
make INSTALL_ROOT=${PKGDIR} install
@@ -422,7 +422,7 @@ build: |
422
422
mkdir build
423
423
cd build
424
424
425
- qmake ../${name}-everywhere-src-${pkgver}
425
+ qmake ../${pkgname}-everywhere-src-${pkgver}
426
426
427
427
make
428
428
make INSTALL_ROOT=${PKGDIR} install
@@ -73,12 +73,12 @@ footprint: |
73
73
-rw-r--r-- root/root usr/lib/qt/qml/QtWebChannel/qmldir
74
74
75
75
build: |
76
- cd ${name}-everywhere-src-${pkgver}
76
+ cd ${pkgname}-everywhere-src-${pkgver}
77
77
patch -Np1 -i ../kf5-1.patch
78
78
mkdir build
79
79
cd build
80
80
81
- qmake ../${name}-everywhere-src-${pkgver}
81
+ qmake ../${pkgname}-everywhere-src-${pkgver}
82
82
83
83
make
84
84
make INSTALL_ROOT=${PKGDIR} install
@@ -76,12 +76,12 @@ footprint: |
76
76
-rw-r--r-- root/root usr/lib/qt/mkspecs/modules/qt_lib_websockets_private.pri
77
77
78
78
build: |
79
- cd ${name}-everywhere-src-${pkgver}
79
+ cd ${pkgname}-everywhere-src-${pkgver}
80
80
patch -Np1 -i ../kf5-1.patch
81
81
mkdir build
82
82
cd build
83
83
84
- qmake ../${name}-everywhere-src-${pkgver}
84
+ qmake ../${pkgname}-everywhere-src-${pkgver}
85
85
86
86
make
87
87
make INSTALL_ROOT=${PKGDIR} install
@@ -55,7 +55,7 @@ footprint: |
55
55
build: |
56
56
mkdir build
57
57
cd build
58
- qmake ../${name}-everywhere-src-${pkgver}
58
+ qmake ../${pkgname}-everywhere-src-${pkgver}
59
59
60
60
make
61
61
make INSTALL_ROOT=${PKGDIR} install
@@ -27,7 +27,7 @@ footprint_xorg-bdftopcf_man: |
27
27
-rw-r--r-- root/root usr/share/man/man1/bdftopcf.1.gz
28
28
29
29
build: |
30
- cd ${name/xorg-/}-1.1.2
30
+ cd ${pkgname/xorg-/}-1.1.2
31
31
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
32
32
make
33
33
@@ -27,7 +27,7 @@ footprint_xorg-iceauth_man: |
27
27
-rw-r--r-- root/root usr/share/man/man1/iceauth.1.gz
28
28
29
29
build: |
30
- cd ${name/xorg-/}-1.0.11
30
+ cd ${pkgname/xorg-/}-1.0.11
31
31
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
32
32
make
33
33
@@ -30,7 +30,7 @@ footprint_xorg-libdmx_man: "drwxr-xr-x\troot/root\tusr/share/man/\ndrwxr-xr-x\tr
30
30
-rw-r--r--\troot/root\tusr/share/man/man3/DMXRemoveInput.3.gz\n-rw-r--r--\troot/root\tusr/share/man/man3/DMXRemoveScreen.3.gz\n\
31
31
-rw-r--r--\troot/root\tusr/share/man/man3/DMXSync.3.gz\n"
32
32
build: |
33
- cd ${name/xorg-/}-1.1.4
33
+ cd ${pkgname/xorg-/}-1.1.4
34
34
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
35
35
make
36
36
package: |
@@ -33,7 +33,7 @@ build: |
33
33
line4="#endif"
34
34
sed -i -e "s@#ifdef HAVE_CONFIG_H@$line1\n$line2\n$line3\n$line4\n\n&@" sys.c
35
35
unset line1 line2 line3 line4
36
- cd ${name/xorg-/}-20250912
36
+ cd ${pkgname/xorg-/}-20250912
37
37
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
38
38
make
39
39
@@ -17,7 +17,7 @@ footprint: "drwxr-xr-x\troot/root\tusr/\ndrwxr-xr-x\troot/root\tusr/bin/\n-rwxr-
17
17
footprint_xorg-mkfontscale_man: "drwxr-xr-x\troot/root\tusr/share/man/\ndrwxr-xr-x\troot/root\tusr/share/man/man1/\n-rw-r--r--\t\
18
18
root/root\tusr/share/man/man1/mkfontdir.1.gz\n-rw-r--r--\troot/root\tusr/share/man/man1/mkfontscale.1.gz\n"
19
19
build: |
20
- cd ${name/xorg-/}-1.2.4
20
+ cd ${pkgname/xorg-/}-1.2.4
21
21
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
22
22
make
23
23
package: |
@@ -26,7 +26,7 @@ footprint_xorg-sessreg_man: |
26
26
-rw-r--r-- root/root usr/share/man/man1/sessreg.1.gz
27
27
28
28
build: |
29
- cd ${name/xorg-/}-1.1.4
29
+ cd ${pkgname/xorg-/}-1.1.4
30
30
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
31
31
make
32
32
@@ -28,7 +28,7 @@ footprint_xorg-setxkbmap_man: |
28
28
-rw-r--r-- root/root usr/share/man/man1/setxkbmap.1.gz
29
29
30
30
build: |
31
- cd ${name/xorg-/}-1.3.5
31
+ cd ${pkgname/xorg-/}-1.3.5
32
32
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
33
33
make
34
34
@@ -29,7 +29,7 @@ footprint_xorg-smproxy_man: |
29
29
-rw-r--r-- root/root usr/share/man/man1/smproxy.1.gz
30
30
31
31
build: |
32
- cd ${name/xorg-/}-1.0.8
32
+ cd ${pkgname/xorg-/}-1.0.8
33
33
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
34
34
make
35
35
@@ -38,7 +38,7 @@ footprint_xorg-x11perf_man: |
38
38
-rw-r--r-- root/root usr/share/man/man1/x11perfcomp.1.gz
39
39
40
40
build: |
41
- cd ${name/xorg-/}-1.7.0
41
+ cd ${pkgname/xorg-/}-1.7.0
42
42
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
43
43
make
44
44
@@ -16,7 +16,7 @@ footprint: "drwxr-xr-x\troot/root\tusr/\ndrwxr-xr-x\troot/root\tusr/bin/\n-rwxr-
16
16
footprint_xorg-xbacklight_man: "drwxr-xr-x\troot/root\tusr/share/man/\ndrwxr-xr-x\troot/root\tusr/share/man/man1/\n-rw-r--r--\t\
17
17
root/root\tusr/share/man/man1/xbacklight.1.gz\n"
18
18
build: |
19
- cd ${name/xorg-/}-1.2.4
19
+ cd ${pkgname/xorg-/}-1.2.4
20
20
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
21
21
make
22
22
package: |
@@ -16,7 +16,7 @@ footprint: "drwxr-xr-x\troot/root\tusr/\ndrwxr-xr-x\troot/root\tusr/bin/\n-rwxr-
16
16
footprint_xorg-xcmsdb_man: "drwxr-xr-x\troot/root\tusr/share/man/\ndrwxr-xr-x\troot/root\tusr/share/man/man1/\n-rw-r--r--\t\
17
17
root/root\tusr/share/man/man1/xcmsdb.1.gz\n"
18
18
build: |
19
- cd ${name/xorg-/}-1.0.7
19
+ cd ${pkgname/xorg-/}-1.0.7
20
20
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
21
21
make
22
22
package: |
@@ -28,7 +28,7 @@ footprint_xorg-xcursorgen_man: |
28
28
-rw-r--r-- root/root usr/share/man/man1/xcursorgen.1.gz
29
29
30
30
build: |
31
- cd ${name/xorg-/}-1.0.9
31
+ cd ${pkgname/xorg-/}-1.0.9
32
32
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
33
33
make
34
34
@@ -29,7 +29,7 @@ footprint_xorg-xdpyinfo_man: |
29
29
-rw-r--r-- root/root usr/share/man/man1/xdpyinfo.1.gz
30
30
31
31
build: |
32
- cd ${name/xorg-/}-1.4.0
32
+ cd ${pkgname/xorg-/}-1.4.0
33
33
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
34
34
make
35
35
@@ -28,7 +28,7 @@ footprint_xorg-xdriinfo_man: |
28
28
-rw-r--r-- root/root usr/share/man/man1/xdriinfo.1.gz
29
29
30
30
build: |
31
- cd ${name/xorg-/}-1.0.8
31
+ cd ${pkgname/xorg-/}-1.0.8
32
32
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
33
33
make
34
34
@@ -28,7 +28,7 @@ footprint_xorg-xev_man: |
28
28
-rw-r--r-- root/root usr/share/man/man1/xev.1.gz
29
29
30
30
build: |
31
- cd ${name/xorg-/}-1.2.7
31
+ cd ${pkgname/xorg-/}-1.2.7
32
32
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
33
33
make
34
34
@@ -41,7 +41,7 @@ footprint_xorg-xf86-input-evdev_man: |
41
41
-rw-r--r-- root/root usr/share/man/man4/evdev.4.gz
42
42
43
43
build: |
44
- cd ${name/xorg-/}-2.11.0
44
+ cd ${pkgname/xorg-/}-2.11.0
45
45
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
46
46
make
47
47
@@ -49,7 +49,7 @@ footprint_xorg-xf86-input-synaptics_man: |
49
49
-rw-r--r-- root/root usr/share/man/man4/synaptics.4.gz
50
50
51
51
build: |
52
- cd ${name/xorg-/}-1.10.0
52
+ cd ${pkgname/xorg-/}-1.10.0
53
53
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
54
54
make
55
55
@@ -36,7 +36,7 @@ footprint_xorg-xf86-video-amdgpu_man: |
36
36
37
37
build: |
38
38
mv xf86-video-amdgpu-${pkgver} ${pkgname}-${pkgver}
39
- meson setup --prefix /usr --buildtype plain --libexecdir lib --sbindir bin -D b_pie=true ${name/xorg-/}-25.0.0 builddir
39
+ meson setup --prefix /usr --buildtype plain --libexecdir lib --sbindir bin -D b_pie=true ${pkgname/xorg-/}-25.0.0 builddir
40
40
meson compile -C builddir
41
41
42
42
package: |
@@ -39,7 +39,7 @@ footprint_xorg-xf86-video-ati_man: |
39
39
build: |
40
40
cd xf86-video-ati-${pkgver}
41
41
#patch -Np1 -i ../xorg-xf86-video-ati-upstream_fixes-1.patch
42
- cd ${name/xorg-/}-22.0.0
42
+ cd ${pkgname/xorg-/}-22.0.0
43
43
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
44
44
make
45
45
@@ -29,7 +29,7 @@ footprint_xorg-xf86-video-fbdev_man: |
29
29
-rw-r--r-- root/root usr/share/man/man4/fbdev.4.gz
30
30
31
31
build: |
32
- cd ${name/xorg-/}-0.5.1
32
+ cd ${pkgname/xorg-/}-0.5.1
33
33
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
34
34
make
35
35
@@ -32,7 +32,7 @@ footprint_xorg-xf86-video-nouveau_man: |
32
32
build: |
33
33
cd xf86-video-nouveau-${pkgver}
34
34
grep -rl slave | xargs sed -i s/slave/secondary/
35
- cd ${name/xorg-/}-1.0.18
35
+ cd ${pkgname/xorg-/}-1.0.18
36
36
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
37
37
make
38
38
@@ -29,7 +29,7 @@ footprint_xorg-xf86-video-vboxvideo_man: |
29
29
-rw-r--r-- root/root usr/share/man/man4/vboxvideo.4.gz
30
30
31
31
build: |
32
- cd ${name/xorg-/}-1.0.1
32
+ cd ${pkgname/xorg-/}-1.0.1
33
33
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
34
34
make
35
35
@@ -29,7 +29,7 @@ footprint_xorg-xf86-video-vesa_man: |
29
29
-rw-r--r-- root/root usr/share/man/man4/vesa.4.gz
30
30
31
31
build: |
32
- cd ${name/xorg-/}-2.6.0
32
+ cd ${pkgname/xorg-/}-2.6.0
33
33
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
34
34
make
35
35
@@ -30,7 +30,7 @@ footprint_xorg-xf86-video-vmware_man: |
30
30
-rw-r--r-- root/root usr/share/man/man4/vmware.4.gz
31
31
32
32
build: |
33
- cd ${name/xorg-/}-13.4.0
33
+ cd ${pkgname/xorg-/}-13.4.0
34
34
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
35
35
make
36
36
@@ -28,7 +28,7 @@ footprint_xorg-xgamma_man: |
28
28
-rw-r--r-- root/root usr/share/man/man1/xgamma.1.gz
29
29
30
30
build: |
31
- cd ${name/xorg-/}-1.0.8
31
+ cd ${pkgname/xorg-/}-1.0.8
32
32
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
33
33
make
34
34
@@ -29,7 +29,7 @@ footprint_xorg-xhost_man: |
29
29
-rw-r--r-- root/root usr/share/man/man1/xhost.1.gz
30
30
31
31
build: |
32
- cd ${name/xorg-/}-1.0.10
32
+ cd ${pkgname/xorg-/}-1.0.10
33
33
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
34
34
make
35
35
@@ -34,7 +34,7 @@ footprint_xorg-xinput_man: |
34
34
-rw-r--r-- root/root usr/share/man/man1/xinput.1.gz
35
35
36
36
build: |
37
- cd ${name/xorg-/}-1.6.4
37
+ cd ${pkgname/xorg-/}-1.6.4
38
38
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
39
39
make
40
40
@@ -29,7 +29,7 @@ footprint_xorg-xkbcomp_man: |
29
29
-rw-r--r-- root/root usr/share/man/man1/xkbcomp.1.gz
30
30
31
31
build: |
32
- cd ${name/xorg-/}-1.5.0
32
+ cd ${pkgname/xorg-/}-1.5.0
33
33
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
34
34
make
35
35
@@ -27,7 +27,7 @@ footprint_xorg-xkbevd_man: |
27
27
-rw-r--r-- root/root usr/share/man/man1/xkbevd.1.gz
28
28
29
29
build: |
30
- cd ${name/xorg-/}-1.1.6
30
+ cd ${pkgname/xorg-/}-1.1.6
31
31
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
32
32
make
33
33
@@ -33,7 +33,7 @@ footprint_xorg-xkbutils_man: |
33
33
-rw-r--r-- root/root usr/share/man/man1/xkbwatch.1.gz
34
34
35
35
build: |
36
- cd ${name/xorg-/}-1.0.7
36
+ cd ${pkgname/xorg-/}-1.0.7
37
37
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
38
38
make
39
39
@@ -28,7 +28,7 @@ footprint_xorg-xkill_man: |
28
28
-rw-r--r-- root/root usr/share/man/man1/xkill.1.gz
29
29
30
30
build: |
31
- cd ${name/xorg-/}-1.0.7
31
+ cd ${pkgname/xorg-/}-1.0.7
32
32
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
33
33
make
34
34
@@ -16,7 +16,7 @@ footprint: "drwxr-xr-x\troot/root\tusr/\ndrwxr-xr-x\troot/root\tusr/bin/\n-rwxr-
16
16
footprint_xorg-xlsatoms_man: "drwxr-xr-x\troot/root\tusr/share/man/\ndrwxr-xr-x\troot/root\tusr/share/man/man1/\n-rw-r--r--\t\
17
17
root/root\tusr/share/man/man1/xlsatoms.1.gz\n"
18
18
build: |
19
- cd ${name/xorg-/}-1.1.5
19
+ cd ${pkgname/xorg-/}-1.1.5
20
20
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
21
21
make
22
22
package: |
@@ -16,7 +16,7 @@ footprint: "drwxr-xr-x\troot/root\tusr/\ndrwxr-xr-x\troot/root\tusr/bin/\n-rwxr-
16
16
footprint_xorg-xlsclients_man: "drwxr-xr-x\troot/root\tusr/share/man/\ndrwxr-xr-x\troot/root\tusr/share/man/man1/\n-rw-r--r--\t\
17
17
root/root\tusr/share/man/man1/xlsclients.1.gz\n"
18
18
build: |
19
- cd ${name/xorg-/}-1.1.6
19
+ cd ${pkgname/xorg-/}-1.1.6
20
20
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
21
21
make
22
22
package: |
@@ -31,7 +31,7 @@ footprint_xorg-xmessage_man: |
31
31
-rw-r--r-- root/root usr/share/man/man1/xmessage.1.gz
32
32
33
33
build: |
34
- cd ${name/xorg-/}-1.0.7
34
+ cd ${pkgname/xorg-/}-1.0.7
35
35
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
36
36
make
37
37
@@ -16,7 +16,7 @@ footprint: "drwxr-xr-x\troot/root\tusr/\ndrwxr-xr-x\troot/root\tusr/bin/\n-rwxr-
16
16
footprint_xorg-xmodmap_man: "drwxr-xr-x\troot/root\tusr/share/man/\ndrwxr-xr-x\troot/root\tusr/share/man/man1/\n-rw-r--r--\t\
17
17
root/root\tusr/share/man/man1/xmodmap.1.gz\n"
18
18
build: |
19
- cd ${name/xorg-/}-1.0.12
19
+ cd ${pkgname/xorg-/}-1.0.12
20
20
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
21
21
make
22
22
package: |
@@ -29,7 +29,7 @@ footprint_xorg-xpr_man: |
29
29
-rw-r--r-- root/root usr/share/man/man1/xpr.1.gz
30
30
31
31
build: |
32
- cd ${name/xorg-/}-1.2.0
32
+ cd ${pkgname/xorg-/}-1.2.0
33
33
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
34
34
make
35
35
@@ -16,7 +16,7 @@ footprint: "drwxr-xr-x\troot/root\tusr/\ndrwxr-xr-x\troot/root\tusr/bin/\n-rwxr-
16
16
footprint_xorg-xprop_man: "drwxr-xr-x\troot/root\tusr/share/man/\ndrwxr-xr-x\troot/root\tusr/share/man/man1/\n-rw-r--r--\t\
17
17
root/root\tusr/share/man/man1/xprop.1.gz\n"
18
18
build: |
19
- cd ${name/xorg-/}-1.2.8
19
+ cd ${pkgname/xorg-/}-1.2.8
20
20
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
21
21
make
22
22
package: |
@@ -28,7 +28,7 @@ footprint_xorg-xrandr_man: |
28
28
-rw-r--r-- root/root usr/share/man/man1/xrandr.1.gz
29
29
30
30
build: |
31
- cd ${name/xorg-/}-1.5.4
31
+ cd ${pkgname/xorg-/}-1.5.4
32
32
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
33
33
make
34
34
@@ -28,7 +28,7 @@ footprint_xorg-xrdb_man: |
28
28
-rw-r--r-- root/root usr/share/man/man1/xrdb.1.gz
29
29
30
30
build: |
31
- cd ${name/xorg-/}-1.2.3
31
+ cd ${pkgname/xorg-/}-1.2.3
32
32
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
33
33
make
34
34
@@ -16,7 +16,7 @@ footprint: "drwxr-xr-x\troot/root\tusr/\ndrwxr-xr-x\troot/root\tusr/bin/\n-rwxr-
16
16
footprint_xorg-xrefresh_man: "drwxr-xr-x\troot/root\tusr/share/man/\ndrwxr-xr-x\troot/root\tusr/share/man/man1/\n-rw-r--r--\t\
17
17
root/root\tusr/share/man/man1/xrefresh.1.gz\n"
18
18
build: |
19
- cd ${name/xorg-/}-1.1.1
19
+ cd ${pkgname/xorg-/}-1.1.1
20
20
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
21
21
make
22
22
package: |
@@ -26,7 +26,7 @@ footprint_xorg-xset_man: |
26
26
-rw-r--r-- root/root usr/share/man/man1/xset.1.gz
27
27
28
28
build: |
29
- cd ${name/xorg-/}-1.2.6
29
+ cd ${pkgname/xorg-/}-1.2.6
30
30
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
31
31
make
32
32
@@ -30,7 +30,7 @@ footprint_xorg-xsetroot_man: |
30
30
-rw-r--r-- root/root usr/share/man/man1/xsetroot.1.gz
31
31
32
32
build: |
33
- cd ${name/xorg-/}-1.1.4
33
+ cd ${pkgname/xorg-/}-1.1.4
34
34
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
35
35
make
36
36
@@ -27,7 +27,7 @@ footprint_xorg-xvinfo_man: |
27
27
-rw-r--r-- root/root usr/share/man/man1/xvinfo.1.gz
28
28
29
29
build: |
30
- cd ${name/xorg-/}-1.1.6
30
+ cd ${pkgname/xorg-/}-1.1.6
31
31
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
32
32
make
33
33
@@ -27,7 +27,7 @@ footprint_xorg-xwd_man: |
27
27
-rw-r--r-- root/root usr/share/man/man1/xwd.1.gz
28
28
29
29
build: |
30
- cd ${name/xorg-/}-1.0.10
30
+ cd ${pkgname/xorg-/}-1.0.10
31
31
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
32
32
make
33
33
@@ -17,7 +17,7 @@ footprint: "drwxr-xr-x\troot/root\tusr/\ndrwxr-xr-x\troot/root\tusr/bin/\n-rwxr-
17
17
footprint_xorg-xwininfo_man: "drwxr-xr-x\troot/root\tusr/share/man/\ndrwxr-xr-x\troot/root\tusr/share/man/man1/\n-rw-r--r--\t\
18
18
root/root\tusr/share/man/man1/xwininfo.1.gz\n"
19
19
build: |
20
- cd ${name/xorg-/}-1.1.7
20
+ cd ${pkgname/xorg-/}-1.1.7
21
21
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
22
22
make
23
23
package: |
@@ -16,7 +16,7 @@ footprint: "drwxr-xr-x\troot/root\tusr/\ndrwxr-xr-x\troot/root\tusr/bin/\n-rwxr-
16
16
footprint_xorg-xwud_man: "drwxr-xr-x\troot/root\tusr/share/man/\ndrwxr-xr-x\troot/root\tusr/share/man/man1/\n-rw-r--r--\t\
17
17
root/root\tusr/share/man/man1/xwud.1.gz\n"
18
18
build: |
19
- cd ${name/xorg-/}-1.0.8
19
+ cd ${pkgname/xorg-/}-1.0.8
20
20
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
21
21
make
22
22
package: |