Skip to content

Commit aa378db

Browse files
committed
use upstream sqlite
1 parent 47f5133 commit aa378db

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

var/spack/repos/builtin/packages/sqlite/package.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2424
##############################################################################
2525
from spack import *
26+
from spack import architecture
2627

2728

2829
class Sqlite(Package):
@@ -33,9 +34,12 @@ class Sqlite(Package):
3334
homepage = "www.sqlite.org"
3435

3536
version('3.8.5', '0544ef6d7afd8ca797935ccc2685a9ed',
36-
url='http://www.sqlite.org/2014/sqlite-autoconf-3080500.tar.gz')
37-
version('3.12.2', 'c552a133aca1ce1d647163d9e43bbcb1',
38-
url='http://www.sqlite.org/2016/sqlite-autoconf-3120200.tar.gz')
37+
url='https://www.sqlite.org/2014/sqlite-autoconf-3080500.tar.gz')
38+
39+
def get_arch(self):
40+
arch = architecture.Arch()
41+
arch.platform = architecture.platform()
42+
return str(arch.platform.target('default_target'))
3943

4044
def install(self, spec, prefix):
4145
config = ["--prefix=" + prefix]

0 commit comments

Comments
 (0)