blob: cb24d522a25b78fc49948c46e14b1279e9d69b39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: Page man de NuTyX (le minimum vital)
# URL: http:/:www.nutyx.org
# Maintainer: NuTyX core team
# Packager: fred.galusik at gmail dot com
# Depends on: txt2tags
name=nutyxman
version=0.3.1
release=1
source=(nutyx.t2t)
build() {
txt2tags -t man -i nutyx.t2t -o nutyx.1
install -D -m 644 nutyx.1 \
$PKG/usr/share/man/fr/man1/nutyx.1
install -D -m 644 nutyx.1 \
$PKG/usr/share/man/man1/nutyx.1
}
|