[DEVELOPMENT ENVIRONMENT]
* BUG: Add missing pkgdesc entry in the PKGBUILD. git-svn-id: svn://localhost/gambas/trunk@3944 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
parent
b217a03484
commit
63dbda86ce
1 changed files with 6 additions and 0 deletions
|
@ -1366,9 +1366,14 @@ Private Function MakeArchPackage(sSys As String)
|
|||
Dim sLib As String
|
||||
Dim sCmd As String
|
||||
Dim sDependencies As String
|
||||
Dim sPkgDesc As String
|
||||
|
||||
Inc Application.Busy
|
||||
|
||||
sPkgDesc = Replace($sDescription, "\n", " ")
|
||||
|
||||
If sPkgDesc = "" Then sPkgDesc = "a software done with Gambas3"
|
||||
|
||||
$sFormatMinMax = "'&1>=&2' "
|
||||
sDependencies = GetDependencies()
|
||||
|
||||
|
@ -1403,6 +1408,7 @@ Private Function MakeArchPackage(sSys As String)
|
|||
Print #hFile, ""
|
||||
Print #hFile, "pkgname=" & String.LCase$($sName)
|
||||
Print #hFile, "_realname=" & $sName
|
||||
Print #hFile, "pkgdesc=\"" & sPkgDesc & "\""
|
||||
Print #hFile, "pkgver=" & $sVersion
|
||||
Print #hFile, "pkgrel=1"
|
||||
Print #hFile, "arch=('any')"
|
||||
|
|
Loading…
Reference in a new issue