summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 782ad8a645537d00b5bd0aae6f95dd3bc8ccf03a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Charlotte (Github: charlottecross1998)
pkgname=configparser.hpp
pkgver=0.1.0
pkgrel=1.0
pkgdesc="Simple, lightweight C++ configuration/ini file parser for Linux. "
arch=("x86_64")
url="https://github.com/orangeduck/Corange"
license=("BSD-2-Clause")
makedepends=("git" "cmake" "make")
source=("git+https://github.com/dzilles/configparser.git")
b2sums=('SKIP')
build()
{
	cd configparser
	cmake .
	make
}
package()
{
	cd configparser
	sudo make install	
}