codelite-git: Add sqlite3 dependency; add .gitignore; split build() from package()
This commit is contained in:
1
mingw-w64-codelite-git/.gitignore
vendored
Normal file
1
mingw-w64-codelite-git/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
codelite
|
||||
@@ -5,7 +5,7 @@ pkgbase=mingw-w64-${_realname}-git
|
||||
pkgname="${MINGW_PACKAGE_PREFIX}-${_realname}-git"
|
||||
provides=("${MINGW_PACKAGE_PREFIX}-${_realname}")
|
||||
conflicts=("${MINGW_PACKAGE_PREFIX}-${_realname}")
|
||||
pkgver=10.0.28.g1f1e42b
|
||||
pkgver=10.0.101.g0ea2fb149
|
||||
pkgrel=1
|
||||
pkgdesc="Open-source, cross platform IDE for the C/C++ programming languages (mingw-w64)"
|
||||
arch=('any')
|
||||
@@ -16,6 +16,7 @@ depends=("${MINGW_PACKAGE_PREFIX}-gcc-libs"
|
||||
"${MINGW_PACKAGE_PREFIX}-libssh"
|
||||
"${MINGW_PACKAGE_PREFIX}-drmingw"
|
||||
"${MINGW_PACKAGE_PREFIX}-wxWidgets"
|
||||
"${MINGW_PACKAGE_PREFIX}-sqlite3"
|
||||
)
|
||||
optdepends=("${MINGW_PACKAGE_PREFIX}-clang")
|
||||
makedepends=("${MINGW_PACKAGE_PREFIX}-boost"
|
||||
@@ -53,7 +54,7 @@ prepare() {
|
||||
patch -p1 -i ${srcdir}/proper-libraries-names-mingw.patch
|
||||
}
|
||||
|
||||
package() {
|
||||
build() {
|
||||
local -a extra_config
|
||||
|
||||
if check_option "debug" "y"; then
|
||||
@@ -77,8 +78,13 @@ package() {
|
||||
../${_realname}
|
||||
|
||||
make # -j1 VERBOSE=1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd build-${MINGW_CHOST}
|
||||
make install
|
||||
|
||||
# why?
|
||||
rm -f ${pkgdir}${MINGW_PREFIX}/lib/codelite/*.a
|
||||
rm -f ${pkgdir}${MINGW_PREFIX}/lib/*.a
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user